C语言实例解析(第二版)-實例5 字符的輸出[接收輸入/輸出字元,字元比較判斷(ASCII觀念應用),無窮迴圈等待]
C语言实例解析(第二版)-實例5 字符的輸出[接收輸入/輸出字元,字元比較判斷(ASCII觀念應用),無窮迴圈等待]
資料來源: http://down.51cto.com/data/435822
線上執行:http://www.tutorialspoint.com/compile_c_online.php / http://codepad.org/
#include <stdio.h>
main()
{
char ch,nch; /* */
int count; /* */
int k; /* */
printf(“Please input a string with a # in the end.\n”);
scanf(“%c”,&ch); /* */
while(ch != ‘#’) /* */
{
if(ch >= ‘0’ && ch <= ‘9’)
{
/* */
count = ch-‘0’+1; /* */
scanf(“%c”,&nch); /* */
for(k=0;k<count;k++) /* */
printf(“%c”,nch);
}
else
printf(“%c”,ch); /* */
printf(” “); /* */
scanf(“%c”,&ch); /* */
}
printf(“#\n”); /* */
}