gpt4 book ai didi

c++ - 使用类、私有(private)、公共(public)、构造函数、函数、整数和字符串进行进一步学习的程序

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

在我的 C++ 类(class)中,我们的任务是不断将不同方面构建到此代码中。我目前遇到 2 个错误,并且卡在我不知道自己做错了什么的地方。该程序将私家车或字符串作为名称和私有(private)整数输入到游戏中,检查是否可被 3、5 以及 3 和 5 整除。我将在类中使用 get 函数和 put 函数输入值并输出它们。我基本上已经弄清楚了这个程序,但它不会编译,我真的不确定为什么。这是我的代码:

#include <iostream>
#include <iomanip>
using namespace std;
using std::istream;

// declare the max size the username input can be
const int MAX = 14;

enum FIZZBUZZ { ABORT = 0, FIZZBUZZ, FIZZ, BUZZ };


class CFizzbuzz // Class definition at global scope
{
// make sure our constructor, destructor, plus member functions are
// all public and available from outside of the class.
public:

CFizzbuzz() {} // Default constructor definition
~CFizzbuzz() {} // Default destructor definition


// function members that are public

// get the user's name and their value from the console and
// store those results into the member variables.
void getFizzbuzz()
{
cout << "Please enter your name: " << endl;
cin >> m_myName;

cout << "Please enter your number for the FizzBuzz game: " << endl;
cin >> m_myNum;
}

// return the user's number type entered
int putFizzBuzz()
{
return m_myNum;
}

char* getName()
{
return m_myName;
}

// logic to check to see if the user's number is 0, fizz, buzz, or fizzbuz
int getRecord(int num)
{
if (num == 0)
{
return ABORT;
}
else if (num % 5 == 0 && num % 3 == 0) // fizzbuzz number
{
return FIZZBUZZ;
}
else if (num % 5 == 0) // buzz number
{
return BUZZ;
}
else if (num % 3 == 0) // fizz number
{
return FIZZ;
}
else
return num;
}

// private data members only available inside the class
private:
int m_myNum;
char m_myName[MAX];
};


int main()
{
CFizzbuzz myClass;


cout << "Welcome to my Fizzbuzz game, you are to guess the location of a "
<< "number which if is divisible by 5 and 3 you will win with "
<< "the output of Fizzbuzz. " << endl;
cout << "Please enter an integer value between 0 and 3 "
<< "representing the row location of the number for the game, "
<< "then press the Enter key: " << endl;

for (;;)
{
myClass.getFizzbuzz();

int num = myClass.putFizzBuzz();
switch (myClass.getRecord(num))
{
case ABORT:
cout << myClass.getName() << "\nThank you for playing\n";
system("PAUSE");
return 0; // exit program

case FIZZ:
cout << "Sorry, " << myClass.getName() << ", number is a Fizz, please try again.\n";
break;

case BUZZ:
cout << "Sorry, " << myClass.getName() << ", number is a Buzz, please try again.\n";
break;

case FIZZBUZZ:
cout << "You win you got FizzBuzz!!!" << endl;
break;

default:
cout << "Sorry, " << myClass.getName() << ", number is a not a Fizz, Buzz, or Fizzbuzz\nPlease try again.\n";
break;
}
}
}

这些是我遇到的错误:

LNK2019, LNK1120

最佳答案

根据您在评论中提到的错误(Unresolved external symbol _WinMain@16),我会说您在 Visual Studio 中创建了一个 Win32 项目(一个 GUI 项目),但您的代码旨在是一个控制台应用程序。

您需要通过重新创建项目或在项目设置中将子系统从 Windows 更改为控制台,将项目类型从 Win32 应用程序更改为控制台应用程序。有关后者的更多信息,请参见以下链接:

https://msdn.microsoft.com/en-us/library/fcc1zstk.aspx

关于c++ - 使用类、私有(private)、公共(public)、构造函数、函数、整数和字符串进行进一步学习的程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42239829/

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