摘要: #include<bits/stdc++.h> using namespace std; int main(){ string a; string b[1000],c[1000]; getline(cin,a); int l=0; while(a.find(' ')>=0&&a.find(' ')< 阅读全文
posted @ 2025-05-31 16:00 陈若麟 阅读(10) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int main(){ string a; char b[100]; getline(cin,a); int c[300]={0}; for(int i=0;i<a.size();i++){ if(a[i]>= 阅读全文
posted @ 2025-05-31 15:28 陈若麟 阅读(9) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; bool f(string a){ int c=a.find('@'),e=a.find(' '); if(c<1||e!=-1){ return 0; }else{ int d=a.find('@',c+1); if( 阅读全文
posted @ 2025-05-31 15:10 陈若麟 阅读(7) 评论(0) 推荐(0)