针对字符串输入之间有空格的问题相关的问题

先说结论:

    bool flag = true;
    while (cin >> s) {
        if (flag) {
            flag = false;
            cout << s.size();
        } else {
            cout << ',' << s.size();
        }
    }

即用while(cin>>s)来输入,一段单词一段单词的来做(遇到cin遇到空格会自动结束的)

也不用担心代码这样子while循环停不下来,因为平台会自动停下(即手动ctr+z) 

例题:

#include<bits/stdc++.h>
using namespace std;
#define int long long 
string s;
void solve(){
    bool flag = true;
    while (cin >> s) {
        if (flag) {
            flag = false;
            cout << s.size();
        } else {
            cout << ',' << s.size();
        }
    }
}
signed main(){
	
	ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
	int t=1;
	//t=1;
	while(t--){
		solve();
	}
	
	return 0;
}

 2:

#include<bits/stdc++.h>
using namespace std;
#define int long long 
string s;
void solve(){
   while(cin>>s){
   	reverse(s.begin(),s.end());
   	cout<<s<<"\n";
   }
}
signed main(){
	
	ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
	int t=1;
	//t=1;
	while(t--){
		solve();
	}
	
	return 0;
}

 over~

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值