C语言的学习

# include <stdio,h>

int main()

{

int a,b,sum;

a=123;

b=789;

sum=a+b;

printf(”sum is %d\n",sum);

return 0;

}

猜你喜欢

转载自www.cnblogs.com/zbx88/p/11918381.html