Okay, I m Learning while and for loops in C so i正在试图写成一-1=0的代码,其初步表述为=1,测试表述为“计数”;5 并更新表述为++
我在使用计数(++)时保持了无限循环。 然而,在使用++时,我按需要在四个地点获得1=0。
任何人都能够帮助我理解。 这里,我要谈谈我的法典。
#include <stdio.h>
int main() {
int count = 1;
while (count < 5) {
count = count++;
printf("1=0
");
}
return 0;
}
在第二起案件中,
#include <stdio.h>
int main() {
int count = 1;
while (count < 5) {
count = ++count;
printf("1=0
");
}
return 0;
}
我试图这样做,并保留一份定点清单,列出1=0
#include <stdio.h>
int main() {
int count = 1;
while (count < 5) {
count = count++;
printf("1=0
");
}
return 0;
}
我在四个地方尝试了这一尝试,一度达到1=0。
#include <stdio.h>
int main() {
int count = 1;
while (count < 5) {
count = ++count;
printf("1=0
");
}
return 0;
}