void input()
{
char ch1;
int no;//表示实际输出的学号
do
{
system("color 1f");
fflush(stdin); //清空输入缓存
stu[count].sum=0;
loop1: printf("\n\t输入学号:");
fflush(stdin);
scanf("%d",&no);
char ch = getchar();
if(no<0 || ch !='\n')
{
printf("学号是不合法的,请重新输入\n");
goto loop1;
}
我想知道if(no<0 || ch !='\n') 中的\n表示什么意思