S1E3那个飞机搞不出来
用的Visual C++ 2010 学习版
#include <stdio.h>
int main()
{
printf("\n\
@\n\
/ \\\n\
* *\n\
* *\n\
* *\n\
* * * * * *\n\
* * * * * * * *\n\
* * * * * * * * * *\n\
* *\n\
* *\n\
* * * *\n\
* * * * * *\n");
return 0;
}
调试后出不来
1>------ 已启动生成: 项目: 作2, 配置: Debug Win32 ------
1>作23.cpp
1>..\作23.cpp(3): error C2470: “main”: 看起来像函数定义,但没有参数列表;跳过明显的函数体
1>..\作23.cpp(16): error C2001: 常量中有换行符
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
本帖最后由 jackz007 于 2021-3-5 12:40 编辑
tx,你的代码原样照搬,用 gcc 编译没有任何问题!
D:\0002.Exercise\C>g++ -o x x.c
D:\0002.Exercise\C>x
@
/ \
* *
* *
* *
* * * * * *
* * * * * * * *
* * * * * * * * * *
* *
* *
* * * *
* * * * * *
D:\0002.Exercise\C>
用 vc 2019 编译也没有问题
D:\0002.Exercise\C>cl x.c
用于 x86 的 Microsoft (R) C/C++ 优化编译器 19.28.29334 版
版权所有(C) Microsoft Corporation。保留所有权利。
x.c
Microsoft (R) Incremental Linker Version 14.28.29334.0
Copyright (C) Microsoft Corporation.All rights reserved.
/out:x.exe
x.obj
D:\0002.Exercise\C>x
@
/ \
* *
* *
* *
* * * * * *
* * * * * * * *
* * * * * * * * * *
* *
* *
* * * *
* * * * * *
D:\0002.Exercise\C> jackz007 发表于 2021-3-5 11:16
tx,你的代码原样照搬,用 gcc 编译没有任何问题!
用 vc 2019 编译也没有问题
可能软件不太好把,谢谢
页:
[1]