当前位置 : 主页 > 编程语言 > c语言 >

C语言 用while循环求和的平均值操作

来源:互联网 收集:自由互联 发布时间:2021-05-09
Ⅰ、用while循环求和的平均值: ①、//代码摘下直接可以运行 #includestdio.hint main(){int count=0,total,number;total=0; //total:存放累加和printf(“Please input six number!\n”);while(count=5) //循环控制条件

Ⅰ、用while循环求和的平均值:

①、//代码摘下直接可以运行

#include<stdio.h>
int main()
{
int count=0,total,number;
total=0; //total:存放累加和
printf(“Please input six number!\n”);
while(count<=5) //循环控制条件
{
count++; //循环体
scanf("%d",&number);
printf(“Enter the No.%d\n”,number);
total+=number;//计算累加和
}
printf(“Average:%.2f\n”,(total*1.0)/6);
return 0;
}

②、结果展示:

例如:此程序是通过计算输入的6个值,通过六个值的和来求平均值;

☺寄语:

Ⅰ、此程序在Visual C++6.0版本上运行的;

Ⅱ、如果我给的程序有问题,或在叙述方面有问题,或者看不懂我讲解的意思,请及时指出或留言和我讨论,谢谢各位大佬!!!

Ⅲ、此次程序比较简单,但是scanf语句比较巧妙,值得注意

补充知识:用C语言求平均数的四种方法

1. 常规操作

两个数的平均数等于两数之和除以二

int main()
{
 int a = 10;
 int b = 5;
 int c = a + b;
 printf("%d\n", c);
 system("pause");
 return 0;
}

这种方法有一定的缺陷,当a或b的值够大时,以至于超过了intmax(整形所能达到的最大值,这个方法就显得不够严谨。

2. 最常用的方法

如:将较大的数减去较小的数,得到两数的相差多少,再将差值的一

半给较小的数,这样两数就相等了。

int main()
{
 int a = 10;
 int b = 5;
 int c = a + (b - a) / 2;
 system("pause");
 return 0;
}

这个方法优于第一种,c的值永远不会超过intmax

3. 使用按位与和按位异或操作符

int main()
{
 int a = 10;
 int b = 5;
 int c = (a&b) + (a^b)/2;
 system("pause");
 return 0;
}

这种方法较难理解,一般不建议使用。

4. 在第三种方法基础上使用右移操作符

int main()
{
 int a = 10;
 int b = 5;
 int c = (a&b) + (a^b>>1);
 system("pause");
 return 0;
}

将一个数右移一位相当于给这个数除以二。

以上这篇C语言 用while循环求和的平均值操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持自由互联。

网友评论