摘要:
数组例子:统计个数 #include <stdio.h> int main(void) { int x; int count[10]; int i; for ( i=0; i<10; i++) //对count进行初始化 { count[i] = 0; } scanf("%d", &x); wh 阅读全文
2021年3月14日 #
摘要:
数组 int number[100]; //这个数组可以放100个数 int x; int cnt = 0; double sum = 0; scanf("%d", &x); while ( x != -1 ) { number[cnt] = x; //对数组中的元素赋值 sum += x; cnt 阅读全文