gpt4 book ai didi

c++ - 无法编译,需要左值,在函数 main 中

转载 作者:搜寻专家 更新时间:2023-10-31 00:39:30 25 4
gpt4 key购买 nike

我想编译这个,但它给我错误,即使我更改了引号,头文件中是否有任何错误,请告诉我

#include<iostream.h>
#include<conio.h>


void main()
{
char st[20];

cin>>st;


cout<<st<<endl;

if (st = 'a')
cout<<"This is a";


if (st = 'b')
cout<<"This is b";

getch();
}

最佳答案

以下说法不正确:

if (st = 'a')
if (st = 'b')

首先,=是赋值而不是比较。其次,'a''b'char 而不是字符串文字。

上面的正确写法是

if (strcmp(st, "a") == 0)
if (strcmp(st, "b") == 0)

也就是说,我鼓励您放弃使用 C 字符串,而改用 std::string

关于c++ - 无法编译,需要左值,在函数 main 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16117326/

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