2846: 统计数字字符个数 摘要:``` #include using namespace std; int main(){ int cnt=0; string s; getline(cin,s); for(in…… 题解列表 2023年12月19日 0 点赞 0 评论 187 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=300;int main(){ int sum=0; str…… 题解列表 2023年12月19日 0 点赞 0 评论 161 浏览 评分:0.0
题解 2846: 统计数字字符个数 摘要: #include using namespace std; const int N=300; int cnt; string a; int m…… 题解列表 2023年12月19日 0 点赞 0 评论 253 浏览 评分:9.9
C++宏三角形面积 简单易懂 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>#include <iomanip>#define area sqrt(s*(s-a)*(s-b)*…… 题解列表 2023年12月18日 0 点赞 0 评论 925 浏览 评分:0.0
C++宏练习 简洁易懂 摘要:解题思路:注意事项:参考代码:#include <iostream>#define yu(a,b) (a%b) using namespace std;int main(){ int a,b,c; c…… 题解列表 2023年12月18日 0 点赞 0 评论 254 浏览 评分:0.0
2849: 石头剪子布 摘要:``` #include using namespace std; const int N=110; int main(){ int T; cin>>T; while(T--){…… 题解列表 2023年12月18日 0 点赞 0 评论 391 浏览 评分:2.0
2849: 石头剪子布 摘要:``` #include using namespace std; const int N=110; int a[N],b[N]; int main(){ int T; cin>>…… 题解列表 2023年12月18日 0 点赞 0 评论 235 浏览 评分:9.9
题解 2849: 石头剪子布 摘要: #include using namespace std; const int N=110; int a[N][N],sum; int main() {…… 题解列表 2023年12月18日 0 点赞 0 评论 236 浏览 评分:2.0
看后五颗星,养成好习惯 ε≡٩(๑>₃<)۶ 一心向学 摘要:解题思路:下图可见注意事项:十分简单,自己思考,不许借鉴,人人有责参考代码:#include<iostream>using namespace std;int main(){ int a; cin >…… 题解列表 2023年12月18日 0 点赞 0 评论 303 浏览 评分:9.9
题解 2878: 计算矩阵边缘元素之和 摘要: #include using namespace std; const int N=110; int a[N][N],sum; int main() {…… 题解列表 2023年12月18日 0 点赞 0 评论 215 浏览 评分:0.0