C的一道很簡單的題!編寫一個能產生下列輸出的程序hello!hello!hello!hello!hello!hello!
題目:
C的一道很簡單的題!
編寫一個能產生下列輸出的程序
hello!hello!hello!
hello!hello!
hello!
在程序中定義一個能顯示字符串hello!一次的函數,並在需要是使用該函數
解答:
#include
void print_hello()
{
printf("hello! "); //顯示字符串hello!一次
}
int main()
{
int i,j;
for(i = 3 ; i > 0 ; i--) //循環3行
{ for(j=0;j
添加新評論