用C语言编写程序1+2,C语言1+2问题怎么写
供参考:
#include<stdio.h> int main() { int a=1,b=2,c; c = a+b; printf("%d + %d = %d\n",a,b,c); return 0; }