gpt4 book ai didi

c++ - 编译代码时出错

转载 作者:太空狗 更新时间:2023-10-29 19:43:59 24 4
gpt4 key购买 nike

我在编译此代码时收到此错误string undeclared

#include <stdio.h>
#include <stdlib.h>


int main()
{
string names;
printf("What is your name?\n");
scanf("%s", &names);

printf("Your name is %s", names);
return 0;
}

谁能告诉我为什么。非常感谢

最佳答案

你应该包括字符串标题:

#include <string>

并且在使用它时不要忘记命名空间 std:

std::string names;

此外,在编写代码时不要混用 C 和 C++。尝试使用 std::cout 而不是 printfcin/getline 而不是 scanf

关于c++ - 编译代码时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17216731/

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