怎样输入一个字符串

[复制链接]
查看11 | 回复1 | 2010-5-21 12:25:00 | 显示全部楼层 |阅读模式
我要一个C++源代码:输入一个字符串,如果输入“abc”,输出“222”,如果输入其他字符串,则输出“000”。

回复

使用道具 举报

千问 | 2010-5-21 12:25:00 | 显示全部楼层
int main(void){char str[4];cin>>str;if(!strcmp(str,"abc"))coutusing namespace std;int main(){ string s; cin >> s; if(s == "abc") {cout using namespace std;int main(){ string s; cin >> s; if(s == "abc") {cout << "222" << endl; } else {cout << "000" << endl
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行