主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
My_opt
2022年4月30日 16:42
c++
P1447
回复 0
|
赞 1
|
浏览 4.2k
#include <iostream> using namespace std; const int N = 110; int m; string s[N]; int main() { cin >> m; for (int i = 0; i < m; i ++ ) { cin >> s[i]; int cnt = 1, t = i; while (t >= 0 && cnt <= 4) cout << cnt ++ << "=" &...
A1120161820
2020年3月8日 10:29
编排字符串(c++)
P1447
回复 1
|
赞 1
|
浏览 8.8k
#include<iostream> #include<string> #include<vector> using namespace std; int main() { int m; vector<string> vstr; cin >> m; for (int i = 1; i <= m; i++) { string s; cin >> s; vstr.push_back(s); int k = 1, j; for (j = vstr.size(...
题目
编排字符串
题解数量
2
发布题解
热门题解
1
c++
2
编排字符串(c++)