\问题
#include <stdio.h>#include <stdlib.h>
int main()
{
{
printf("@\n\
/ \\n\
* *\n\
* *\n\
* *\n\
* * * * * * *\n\
* * * * * * * * *\n\
* * * * * * * * * * *\n\
* *\n\
* *\n\
* * * *\n\
* * * * * * *\n\")
}
system("PAUSE");
return 0;
}
为什么错 printf 的右引号被 注释掉了,而且还少了分号。 #include <stdio.h>
#include <stdlib.h>
int main()
{
{
printf("@\n\
/ \\\n\
* *\n\
* *\n\
* *\n\
* * * * * * *\n\
* * * * * * * * *\n\
* * * * * * * * * * *\n\
* *\n\
* *\n\
* * * *\n\
* * * * * * *\n");
}
system("PAUSE");
return 0;
}
为什么@会跑其他地方去 Q╜先森 发表于 2017-6-23 07:12
为什么@会跑其他地方去
你看看 你的cpp源代码就知道了
09 TAB
20 空格
* 2A
@ 40 wuyuan2011woain 发表于 2017-6-23 08:55
09 TAB
20 空格
* 2A
谢谢
页:
[1]