gpt4 book ai didi

c++ - 将伪代码翻译成 C++

转载 作者:行者123 更新时间:2023-11-28 07:39:05 27 4
gpt4 key购买 nike

我得到了一个伪代码来翻译成 C++:

    Set a Boolean variable “first” to true.
While another value has been read successfully
If first is true
Set the minimum to the value.
Set first to false.
Else if the value is less than the minimum
Set the minimum to the value.
Print the minimum

这是我的代码:

bool first = true;
bool read_value = true;
int value = 0;
int minimum = 0;
cout << "Enter an integer : " ;
cin >> value;
while(cin.hasNextInt()) // error here
{
cout << "Enter another integer : " ;
cin >> minimum;
if( first == true){
minimum = value;
first = false;
}else if ( value < minimum){
minimum = value;
}
}
cout << minimum;

system("PAUSE");
return 0;

那里的 hasNextInt 有错误。而且我真的不知道伪代码想要什么。有人可以给我解释一下吗?

提前致谢。

最佳答案

标准 C++ 库中没有 hasNextInt() 函数(这就是您无法编译的原因)。然而,Java 中有一个!

关于c++ - 将伪代码翻译成 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16193154/

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