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

    技术2022-05-13  5

    // 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(   


    最新回复(0)