已采纳回答 / weixin_慕斯3464934
你把i=0放在循环里面了, 开始循环你就都把i定义为0了。应该把i=0放在循环外。所以进入无限循环状态。正确如下:#include <stdio.h>int main(){ int arr[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; //补全代码实现对数组arr的遍历 //可以采用你自己喜欢的循环结果 int i; i=0; do{ printf("%d\n",arr[i]);i++; }while(i<10); ...
2020-03-14
最新回答 / qq_慕雪0394078
#include <stdio.h>int main(){ int n ,i; printf("请输入一个整数\n"); scanf_s("%d", &n); for (i = 1; i <= n; i++) { if (i % 2 != 0) { printf("%d\n", i); } }}
2020-03-14
已采纳回答 / 小龙佩奇
int main(void) { int month=2; if((month==1)||(month==3)||(month==5)||(month==7)||(month==8)||(month==10)||(month==12)) { printf("solar month\n"); } else if((month==2)||(month==4)||(month==6)||(month==9)||(month==11)) { ...
2020-03-13