在C語言中,可以使用循環結構來連續輸出n個字符。下面是一個例子:
#include <stdio.h>
int main() {
int n = 10; // 輸出字符的個數
char ch = 'A'; // 要輸出的字符
for (int i = 0; i < n; i++) {
printf("%c", ch); // 輸出字符
}
return 0;
}
可以將要輸出的字符賦值給ch
變量,然后使用for
循環控制輸出的次數,循環體內使用printf
函數輸出字符。