主题:串的输入问题
xust
[专家分:10] 发布于 2007-11-04 23:30:00
如何实现串的输入啊? 完整程序 比如"I am a student"
回复列表 (共2个回复)
沙发
bpttc [专家分:8790] 发布于 2007-11-05 18:42:00
fgets
板凳
luning298 [专家分:130] 发布于 2007-11-07 16:57:00
#include<iostream.h>
void fn()
{
char str[128];
cout<<"Type is a line of text and press Enter:"<<endl;
cin.getline(str,sizeof(str));
cout<<"You typed:"<<str<<endl;
}
void main()
{
fn();
}
我来回复