为什么这个代码在运行时y在数组中的值没有变化
#include<stdio.h>int main(){
int x,y,x2,y2,g,k,a=0;
int tu={0};
scanf("%d %d %d %d",&x,&y,&g,&k);
x2=x;
y2=y;
for(y;y<=y2+k;y++){
printf("%d\n",y);
for(x;x<=x2+g;x++){
tu=a+1;
printf("x = %d,y =%d,tu=%d ",x,y,tu);
}
}
return 0;
} 这个问题出现的原因是你在循环内部使用了变量y作为循环变量,导致循环结束后y的值不会有任何改变。同时,你可能需要重新考虑使用数组的方式来存储tu的值。
下面是一个修改后的代码示例:
#include <stdio.h>
int main() {
int x, y, g, k;
int tu = {0}; // 假设tu的最大大小为100x100
scanf("%d %d %d %d", &x, &y, &g, &k);
for (int i = 0; i < g; i++) {
for (int j = 0; j < k; j++) {
tu = 1; // 将tu到tu的元素设置为1
}
}
// 输出tu的值
for (int i = 0; i < 10; i++) { // 假设打印10行
for (int j = 0; j < 10; j++) { // 假设打印10列
printf("%d ", tu);
}
printf("\n");
}
return 0;
}
请注意,示例代码只演示了如何将tu数组中指定范围内的元素设置为1,并未显示完整的tu数组。您可以根据实际需求修改代码,输出更多或其他位置的元素。
以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。 问题出在第十行代码,我们可以知道,在一次内循环(你设置的第二次for循环)后,我们的x的值就已经和x2+g相等了,那么在进入第二次外循环时,再进入内循环时,系统判定x == x2+g+1(x大于x2+g了),那么就不再进入循环了,所以不会再继续打印,就导致程序运行时只有一行,并且y的值不在变化,(因为只有继续打印后面的行,才会显示出你想看到的y的变化,实际上,我们可以看到,y最后的值就是y2+k+1,这点你应该清楚)
改进代码:
#include<stdio.h>
int main(){
int x,y,x2,y2,g,k,a=0;
int tu={0};
scanf("%d %d %d %d",&x,&y,&g,&k);
x2=x;
y2=y;
for(y;y<=y2+k;y++){
printf("%d\n",y);
x = x2;//这里是唯一的修改。
for(x;x<=x2+g;x++){
tu=a+1;
printf("x = %d,y =%d,tu=%d ",x,y,tu);
}
}
return 0;
}
运行示例:
5
5
5
5
5
x = 5,y =5,tu=1 x = 6,y =5,tu=1 x = 7,y =5,tu=1 x = 8,y =5,tu=1 x = 9,y =5,tu=1 x = 10,y =5,tu=1 6
x = 5,y =6,tu=1 x = 6,y =6,tu=1 x = 7,y =6,tu=1 x = 8,y =6,tu=1 x = 9,y =6,tu=1 x = 10,y =6,tu=1 7
x = 5,y =7,tu=1 x = 6,y =7,tu=1 x = 7,y =7,tu=1 x = 8,y =7,tu=1 x = 9,y =7,tu=1 x = 10,y =7,tu=1 8
x = 5,y =8,tu=1 x = 6,y =8,tu=1 x = 7,y =8,tu=1 x = 8,y =8,tu=1 x = 9,y =8,tu=1 x = 10,y =8,tu=1 9
x = 5,y =9,tu=1 x = 6,y =9,tu=1 x = 7,y =9,tu=1 x = 8,y =9,tu=1 x = 9,y =9,tu=1 x = 10,y =9,tu=1 10
x = 5,y =10,tu=1 x = 6,y =10,tu=1 x = 7,y =10,tu=1 x = 8,y =10,tu=1 x = 9,y =10,tu=1 x = 10,y =10,tu=1
我们会发现程序运行后打印的东西很不整洁,同时,原代码也不容易理解你的意图,可以有以下改进:
#include<stdio.h>
int main(){
//定义loop_x和loop_y分别表示x和y循环自增的次数
int x,y,loop_x,loop_y,a=0;
//i和j用于循环过程的进行
int i,j;
int tu={0};
//temp记录x的初始值
int temp;
scanf("%d %d %d %d",&x,&y,&loop_x,&loop_y);
temp = x;
for(i = 0;i <= loop_y;i ++,y ++){
x = temp;
for(j = 0;j <= loop_x;j ++,x ++){
tu=a+1;
printf("x = %3d,y =%3d,tu=%3d ",x,y,tu);
}
printf("————%d\n\n",y);//想让y的值出现在每行的后面应该放在内循环的下面
}
return 0;
}
运行示例:
5
5
5
5
x = 5,y =5,tu=1 x = 6,y =5,tu=1 x = 7,y =5,tu=1 x = 8,y =5,tu=1 x = 9,y =5,tu=1 x =10,y =5,tu=1 ————5
x = 5,y =6,tu=1 x = 6,y =6,tu=1 x = 7,y =6,tu=1 x = 8,y =6,tu=1 x = 9,y =6,tu=1 x =10,y =6,tu=1 ————6
x = 5,y =7,tu=1 x = 6,y =7,tu=1 x = 7,y =7,tu=1 x = 8,y =7,tu=1 x = 9,y =7,tu=1 x =10,y =7,tu=1 ————7
x = 5,y =8,tu=1 x = 6,y =8,tu=1 x = 7,y =8,tu=1 x = 8,y =8,tu=1 x = 9,y =8,tu=1 x =10,y =8,tu=1 ————8
x = 5,y =9,tu=1 x = 6,y =9,tu=1 x = 7,y =9,tu=1 x = 8,y =9,tu=1 x = 9,y =9,tu=1 x =10,y =9,tu=1 ————9
x = 5,y = 10,tu=1 x = 6,y = 10,tu=1 x = 7,y = 10,tu=1 x = 8,y = 10,tu=1 x = 9,y = 10,tu=1 x =10,y = 10,tu=1 ————10
页:
[1]