9 条题解

  • 0
    @ 2024-4-6 8:55:34
    #include<bits/stdc++.h>
    using namespace std;
    #define MaxSize 100
    
    int sum;
    
    int main(){
    	string str;
    	getline(cin,str);
    	
    	int n=str.length();
    	for(int i=0; i<n; i++){
    		if(str[i]!=' '&&str[i]!='\n')
    			sum++;
    	}
    	cout<<sum<<endl;
    	
    	return 0;
    }
    

    信息

    ID
    10
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    1158
    已通过
    569
    上传者