C语言入门
};
getch();
}
【课堂练习】
1、编写程序,等待用户输入字符,如果输入的不是'q',就输出该字符,如果是'q'就结束.
#include <stdio.h>
#define TRUE
void main()
{
char cKey='';
do
{
scanf("%c",&cKey);
if (cKey=='q') /*注意:单字符必须使用单引号括起来*/
break;
printf("%c",cKey);
}while (TRUE);
}
2、使用continue控制循环
输出所有的偶数
#include <stdio.h>
void main()
{
int ino=0;
while(ino<30)
{
ino=ino+1;
if(ino%2!=0)
continue;
printf("%d\n",ino);
}
}