gpt4 book ai didi

c++ - 为什么 Visual Studio 2019 不编译我的代码?

转载 作者:行者123 更新时间:2023-11-30 04:44:34 25 4
gpt4 key购买 nike

<分区>

我一直在努力让这段代码正常工作。我主要是自己和谷歌制作这段代码。我是这方面的新手,所以我不知道如何解决这个问题。

我尝试过切割代码,将其转换为 C#,(当然是修改它)新文件和不同的编译器。

#include <iostream>
using namespace std;

//suurin_luku.cpp

int question() {
double answers;
cout << "Do you want the biggest number, or smallest number?\n";
cout << "0 for biggers, 1 for smaller.\n";
cin >> answers;

if (answers == 0) {
int biggest();
}
if (answers == 1) {
int smallest();

}
return 0;
}






int biggest()
{
float input1, input2, input3;
cout << "Please insert three numbers.\n";
cin >> input1 >> input2 >> input3;
if (input1 >= input2 && input1 >= input3)
{
cout << "The largest number is: " << input1;
}
if (input2 >= input1 && input2 >= input3)
{
cout << "The largest number is: " << input2;
}
if (input3 >= input1 && input3 >= input2) {
cout << "The largest number is: " << input3;
}
return 0;
}

int smallest()
{
float input11, input22, input33;
cout << "Insert three numbers.";
cin >> input11 >> input22 >> input33;
if (input11 <= input22 && input11 <= input33)
{
cout << "The smallest number is: " << input11;
}
if (input22 <= input11 && input22 <= input33)
{
cout << "The smallest number is: " << input22;
}
if (input33 <= input11 && input33 <= input22) {
cout << "The smallest number is: " << input33;
}
return 0;
}

当用户输入0时,显示输入的最大数。当用户输入 1 时,它显示最小的输入数字。错误代码为 LNK1120 和 LNK2019。

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