用C语言写一个计算A+B的简单程序,怎么做?

用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、一般每个程序都有一些函数,函数的作用是把参数传入的值进行相加,然后返回相加后的值。

/*简易计算历悄器.cpp 你自己找个c++编译器就可以运行*/

#include<iostream>#include<string>using

namespace

stdint

main(){ float

a,bchar

strcout<<"a="cin>>a

//输入两个数 cout<<"

b="cin>悔迹>b

cout<<"肢前渣请输入+,-,*,/

其中一个运算符"<<endl

cout<<"你所选的运算符是:"fflush(stdin)

//清空输入缓冲区,通常是为了确保不影响后面的数据读取

str=getchar()

cout<<endl

switch(str)

{

case

'+':cout<<"a+b="<<a+bbreak

case

'-':cout<<"a-b="<<a-bbreak

case

'*':cout<<"a*b="<<a*bbreak case

'/':cout<<"a/b="<<a/bbreak defaut:cout<<"error"

} return

0}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12436989.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-25
下一篇 2023-05-25

发表评论

登录后才能评论

评论列表(0条)

保存