gpt4 book ai didi

c++ - 如何在 C++ 中编写带有字符串的 switch 语句?

转载 作者:行者123 更新时间:2023-12-02 04:23:13 24 4
gpt4 key购买 nike

我正在开发一个关于 Dev-C++ 的小项目。我正在尝试创建一个机器人来问你一些问题,但我无法将 switch 语句与字符串一起使用。每次我尝试这样做时都会显示错误!我还尝试将 srings 更改为正常的 int 变量,但是当我回答第一个问题后,代码立即运行!有谁知道如何解决这些情况?

这是我的代码:

// #include "stdafx";

#include <iostream>
#include <string>
#include <stdio.h>
#include <string.h>

using namespace std;

int main()
{
string comida;
string nome;
string idade;
string pais;

cout << "Ola, o meu nome e Aleksandar. Qual e o teu nome?" << endl; //Ask for nome
cin >> nome; //Recieve variable nome

cout << "Es de que pais, " << nome << "?" << endl; //Ask for pais
cin >> pais; //Receive pais
cout << pais << " e um pais bonito. " << "Eu sou de Portugal!" << endl;

cout << "Quantos anos tens " << nome << "?" << endl; //Ask for idade
cin >> idade; //Receive variable idade

switch (idade) {
case 21:
cout << "O meu irmao tambem tem 21 anos!" << endl;
break;
}
cout << "Eu tenho 28" << endl;

cout << "Qual e a tua comida preferida?" << endl; //Ask for comida
cin >> comida; //Receive variable comida

cout << "Tambem gosto muito de " << comida << ". Mas gosto mesmo e de Vatruchka!" << endl;
cout << "Xau " << nome << "!" << endl;
}

最佳答案

如果字符串包含数字,switch(std::stoi(idade)) 将起作用。但如果 idade 包含其他内容,则不起作用。

关于c++ - 如何在 C++ 中编写带有字符串的 switch 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28788372/

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