回 帖 发 新 帖 刷新版面

主题:串的输入问题

如何实现串的输入啊? 完整程序 比如"I am a student"

回复列表 (共2个回复)

沙发

fgets

板凳

#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();
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册