2 条题解

  • 0
    @ 2024-12-28 18:12:51
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	bool t=false;
    	string a;	
    	while(cin>>a){
    		if(t){
    			cout<<",";
    		}else{
    			t=true;
    		}
    		cout<<a.size();
    	}
    }
    ```
    
    ```
    
    • 0
      @ 2023-12-23 10:52:48
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	bool t=false;
      	string a;	
      	while(cin>>a){
      		if(t){
      			cout<<",";
      		}else{
      			t=true;
      		}
      		cout<<a.size();
      	}
      }
      
      
      • 1

      信息

      ID
      338
      时间
      1000ms
      内存
      256MiB
      难度
      5
      标签
      递交数
      49
      已通过
      18
      上传者