|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
按照课后联系,我瞎写了一段printf
#include <stdio.h>
int main()
{
printf("\n\
/ \\\n\
*********************\n\
*****************\n\
*************\n\
***\n\
***\n\
***\n\
***\n\
*********\n\
*****\n");
return 0;
}
~
但是输出结果如下,请问这个是什么问题
printf("\n\
^
test5.c:8:2: 错误:expected expression before ‘/’ token
/ \\\n\
^
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:8:2: 错误:程序中有游离的‘\’
test5.c:17:9: 警告:缺少结尾的 " 字符 [默认启用]
*****\n");
|
|