上一页 1 ··· 3 4 5 6 7 8 下一页
2019年11月6日
摘要: #include <iostream> #include <string> #include <cctype> using namespace std; int main() { string word; cin>>word; word[0]=toupper(word[0]); cout<<word 阅读全文
posted @ 2019-11-06 10:19 ComMario 阅读(83) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> #include <algorithm> using namespace std; #define maxSize 105 int main() { string exp; int digit[maxSize]; int l 阅读全文
posted @ 2019-11-06 10:18 ComMario 阅读(122) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> #include <cctype> using namespace std; int main() { string str1; string str2; int length; while(cin>>str1>>str2) 阅读全文
posted @ 2019-11-06 10:16 ComMario 阅读(186) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> #include <cctype> using namespace std; int main() { string str1; string str2; int length; while(cin>>str1>>str2) 阅读全文
posted @ 2019-11-06 10:16 ComMario 阅读(115) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> using namespace std; int main() { int n, plus, sub; string ope; while(cin>>n) { plus=sub=0; while(n--) { cin>>op 阅读全文
posted @ 2019-11-06 10:15 ComMario 阅读(134) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main() { int m, n; cin>>m>>n; cout<<(m*n)/2<<endl; return 0; } 阅读全文
posted @ 2019-11-06 10:14 ComMario 阅读(99) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; #define maxSize 10 int main() { int views[maxSize]; int n, res; while(cin>>n) { res=0; for(int i=0; i<n; ++i) 阅读全文
posted @ 2019-11-06 10:13 ComMario 阅读(124) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cctype> #include <string> using namespace std; int main() { string str; cin>>str; int length; length=str.size(); for(int 阅读全文
posted @ 2019-11-06 10:12 ComMario 阅读(142) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; #define maxSize 60 int main() { int score[maxSize]; int n, k, res; cin>>n>>k; res=0; for(int i=0; i<n; ++i) c 阅读全文
posted @ 2019-11-06 10:11 ComMario 阅读(89) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> using namespace std; int main() { string word; int length, n; cin>>n; for(int i=0; i<n; ++i) { cin>>word; length 阅读全文
posted @ 2019-11-06 10:10 ComMario 阅读(102) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 下一页