用c语言运行3+2=5的程序代码

2025-03-13 11:01:13
推荐回答(1个)
回答1:

直接计算不就可以了?如下:

#include
int main(){
    int a=2,b=3;
    printf("%d\n",a+b);
    return 0;
}