空的符的使用,求方法。
#include<stdio.h>void main()
{
int score;
printf("输入考试成绩");
scant("%d",&score);
if (score<60)
printf("考试成绩为%d,不合格\n",score);//这里的\n是直接加上去的
else
printf("考试成绩为%d,合格\n",score);
}
#include <stdio.h>
void main()
{
int a,b;
printf("输入两个数:\n");
scanf("%d,%d\n",&a,&b);//这里的\n直接加上去就不行
if (a>=b)
{
if (a>b)
printf("%d>%d",a,b);
else
printf("%d=%d",a,b);
}
else
printf("%d<%d",a,b);
}
我想知道哪能加\n,哪不能。谢谢!