D-P

博客园 首页 新随笔 联系 订阅 管理

2021年3月14日 #

摘要: 数组例子:统计个数 #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 阅读全文
posted @ 2021-03-14 23:14 D-P 阅读(85) 评论(0) 推荐(0) 编辑

摘要: 数组 int number[100]; //这个数组可以放100个数 int x; int cnt = 0; double sum = 0; scanf("%d", &x); while ( x != -1 ) { number[cnt] = x; //对数组中的元素赋值 sum += x; cnt 阅读全文
posted @ 2021-03-14 23:13 D-P 阅读(76) 评论(0) 推荐(0) 编辑