小白求助~
#include <stdio.h>
int main()
{ int height = 185;
if(height>=180)
{printf("恭喜小明可以参加校篮球队\n"); }
return 0;}
求问printf输出项两种方式的区别。。。。。
#include <stdio.h>
int main()
{
int height = 185;
if(height>=180)
{
printf("%s\n","恭喜小明可以参加校篮球队");
}return 0;
}
#include <stdio.h>
int main()
{ int height = 185;
if(height>=180)
{printf("恭喜小明可以参加校篮球队\n"); }
return 0;}
求问printf输出项两种方式的区别。。。。。
#include <stdio.h>
int main()
{
int height = 185;
if(height>=180)
{
printf("%s\n","恭喜小明可以参加校篮球队");
}return 0;
}
2015-11-09
举报