C語言之用while循環求和的平均值

Ⅰ、用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("
相關文章
相關標籤/搜索