gpt4 book ai didi

c++ - 编译 c++ 文件时得到 'Command not Found'

转载 作者:太空宇宙 更新时间:2023-11-04 06:06:52 24 4
gpt4 key购买 nike

关闭。这个问题需要details or clarity .它目前不接受答案。












想改进这个问题?通过 editing this post 添加详细信息并澄清问题.

2年前关闭。




Improve this question




我正在编写一个 C++ 程序从 10 倒数到 0。

#include <iostream>
using namespace std;
int main()
{
int i=10;
while (i> 10){
cout << " count down: " << i << endl; i--;
}
return 0;
}

以上是我的 C++ 代码。但是,当我尝试编译它时出现以下错误:

clang 版本 7.0.0-3~ubuntu0.18.04.1 (tags/RELEASE_700/final)
clang++-7 -pthread -o main main.cpp 

。/主要的
10 bash:10:找不到命令

最佳答案

只需更改行 while (i> 10)如下所示:

while (i >= 0)

然后运行并查看输出:
 count down: 10
count down: 9
count down: 8
count down: 7
count down: 6
count down: 5
count down: 4
count down: 3
count down: 2
count down: 1
count down: 0

关于c++ - 编译 c++ 文件时得到 'Command not Found',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60256413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com