tc和c++不兼容吗 我的程序错在那呢

来源:互联网 发布:淘宝助理卡在初始化 编辑:程序博客网 时间:2024/05/17 04:03

// function.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include

int max(int a,int b)
{
    return a>b?a:b;
}

int min(int a,int b)
{
    return a }

int add(int a,int b)
{
    return a+b;
}

int process(int a,int b,int (*p)(int,int))
{
    return (*p)(a,b);
}
int main( 
错误列表 

原创粉丝点击