21xrx.com
2024-11-10 00:50:56 Sunday
登录
文章检索 我的文章 写文章
C语言程序实现三个数求和
2023-06-17 09:05:24 深夜i     --     --
C语言 三个数求和 scanf函数 printf函数

在C语言中,实现三个数的求和并不困难。我们只需要给出三个变量,在程序中接收用户输入的三个数,在进行累加,输出结果即可。

下面是简单的C语言程序:


#include

int main()

{

  int a, b, c, sum;

  printf("请输入三个数字,用空格分开:");

  scanf("%d %d %d", &a, &b, &c);

  sum = a + b + c;

  printf("它们的和是:%d\n", sum);

  return 0;

}

对于上面的代码,我们主要使用了scanf函数,它可以格式化读入,从控制台读取用户的输入,将三个数读入三个变量中,再执行加法操作,得到结果后通过printf函数输出。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复