C++里面定义String类型的变量为什么总是报错?

源码:#include<iostream.h>#include<stdio.h>#include<string.h>voidmain(){for(inti=0;i<10;... 源码:
#include <iostream.h>
#include <stdio.h>
#include <string.h>
void main(){
for(int i = 0; i < 10; i++){
for(int x = 0; x <10 - i; x++){
printf(" ");
}
for(int j = 0; j < 2 * i + 1; j++){
printf("*");
}
printf("\n");
}
string name;
name = "hello world!";
printf(name);
}
错误:
--------------------Configuration: one_Program - Win32 Debug--------------------
Compiling...
test.cpp
E:\XX\Software\C++\one_Program\test.cpp(14) : error C2065: 'string' : undeclared identifier
E:\XX\Software\C++\one_Program\test.cpp(14) : error C2146: syntax error : missing ';' before identifier 'name'
E:\XX\Software\C++\one_Program\test.cpp(14) : error C2065: 'name' : undeclared identifier
E:\XX\Software\C++\one_Program\test.cpp(15) : error C2440: '=' : cannot convert from 'char [13]' to 'int'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast
执行 cl.exe 时出错.

test.obj - 1 error(s), 0 warning(s)
改成:
#include <string>
using namespace std;
这样还是报错!
错误:
--------------------Configuration: one_Program - Win32 Debug--------------------
Compiling...
test.cpp
E:\何涵\Software\C++\one_Program\test.cpp(9) : error C2146: syntax error : missing ')' before identifier 'name'
E:\何涵\Software\C++\one_Program\test.cpp(9) : error C2059: syntax error : ')'
执行 cl.exe 时出错.

test.obj - 1 error(s), 0 warning(s)
展开
 我来答
百度网友4026904
推荐于2018-04-10
知道答主
回答量:5
采纳率:0%
帮助的人:6.5万
展开全部
#include <iostream.h>
#include <string>
#include <stdio.h>
using namespace std;
void main()
{
for(int i = 0; i < 10; i++)
{
for(int x = 0; x <10 - i; x++)
{
printf(" ");
}
for(int j = 0; j < 2 * i + 1; j++)
{
printf("*");
}
printf("\n");
}
string name ;
name="hello world!";
printf("%s\n",name);
}
首先丢了using namespace std;这条语句,程序会报错。其次应该是#include <string>,而不是string.h。你再试试吧!
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
好奇心日志
2010-05-18 · 超过43用户采纳过TA的回答
知道小有建树答主
回答量:84
采纳率:0%
帮助的人:121万
展开全部
改为:
#include <string>
using namespace std;
最后

printf(name);
改成下面这个:
printf(name.c_str());
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wxshenjianjian
2010-05-18 · TA获得超过2607个赞
知道小有建树答主
回答量:553
采纳率:0%
帮助的人:593万
展开全部
那个里面定义好像是用char name[]="hello world!";printf("%s\n",name);这样就行了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式