在C語言中,要讓結果一直顯示,可以使用循環來重復輸出結果。常見的循環結構有for循環、while循環和do-while循環。具體的寫法如下:
#include <stdio.h>
int main() {
for (;;) {
// 在這里編寫要執行的代碼,即要顯示的結果
printf("結果\n");
}
return 0;
}
#include <stdio.h>
int main() {
while (1) {
// 在這里編寫要執行的代碼,即要顯示的結果
printf("結果\n");
}
return 0;
}
#include <stdio.h>
int main() {
do {
// 在這里編寫要執行的代碼,即要顯示的結果
printf("結果\n");
} while (1);
return 0;
}
以上三種循環結構都能實現結果一直顯示的效果,可以根據具體需求選擇適合的循環結構。注意循環條件中的常量1表示一直為真,從而保證了循環的無限執行。