用C语言写一个计算A+B的简单程序,怎么做?
1个回答
展开全部
程序如下:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{ int a,b;
scanf("%d %d",&a,&b);
printf("%d",a+b);
system("PAUSE");
return 0;
}
C语言编写简单程序具体操作步骤:
1、头文件:基本都会带有三个头文件,这是编译系统自带的头文件,我们一般都会使用到以下三个头文件:
#include <stdio.h> :标准输入输出文件库
#include <stdlib.h>:标准文件操作库
#include <string.h>:字符处理函数库
2、每个程序里都包含有一个mian函数,如:
int main()
{
int a = 1;
int b = 2;
int c = 0;
c = func(a,b);
printf("%d",c);
return 0;
}
3、一般每个程序都有一些函数,函数的作用是把参数传入的值进行相加,然后返回相加后的值。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询