gpt4 book ai didi

c++ - 当用户在 C++ 控制台应用程序中输入 "exit"时,我将如何退出应用程序?

转载 作者:太空宇宙 更新时间:2023-11-03 10:20:17 27 4
gpt4 key购买 nike

我正在用 C++ 构建一个控制台应用程序,我想要两件事:

  • 当有人输入“exit”退出控制台时,
  • 当有人输入“showme”以显示我制作的字符串时。

我试着做了这个

#include "stdafx.h"
#include <stdio.h>
#include <iostream>

using namespace std;

int answer;
cout << "What do you want to learn?" << endl;
cin << answer << endl;
if answer == "show"
cout << "You have been shown the light" << endl;
if answer == "exit"
exit.window

这就是我想象的代码,但如果有人能帮忙,我正在上我的第 4 节 C++ 课。提前致谢。

最佳答案

这里有几点:

  • 您缺少 main 的代码功能。

  • 您正在尝试输出 <<cin ,什么时候应该输入 >> .

  • 您正在尝试输入 int什么时候应该是 string .

  • 您的 if 缺少括号声明。

  • 为了退出到控制台,只需return来自 main或调用exit(status) .

关于c++ - 当用户在 C++ 控制台应用程序中输入 "exit"时,我将如何退出应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8085412/

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