语句作用
#include<stdio.h>int main(void)
{
char ch;
int count=0;
while((ch=getchar())!='#')
{
count++;
if(count%8==0)
printf('\n');
printf("%c,ascii is %d ",ch,ch);
while((ch=getchar())!='#')
break;
}
return 0;
}
这个程序的作用是输出所输入的字符的ascii编码和其自身,红笔标注的地方是关键,没有了它,每次输出时都会输出空格和其ascii代码.请问这是神马问题