1195: 去掉双斜杠注释 摘要:```cpp #include using namespace std; int main() { string str1="//",str; int k; wh…… 题解列表 2022年12月30日 0 点赞 0 评论 495 浏览 评分:9.9
统计数字字符个数 摘要:、解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n=0; char a[255]; …… 题解列表 2022年12月30日 0 点赞 0 评论 528 浏览 评分:0.0
1194: 去括号 摘要:```cpp #include #include #include #include using namespace std; int main() { string c; …… 题解列表 2022年12月30日 0 点赞 0 评论 564 浏览 评分:9.9
1193: 半数集问题 摘要:```cpp #include #include using namespace std; int a[1005]; int f(int n) { if(a[n]) …… 题解列表 2022年12月30日 0 点赞 0 评论 507 浏览 评分:9.9
1192: 十->二进制转换 摘要:```cpp #include #include using namespace std; int n,flag=0; vectorarr; void BinaryChange(int n…… 题解列表 2022年12月30日 0 点赞 0 评论 465 浏览 评分:9.9
1191: 化学品问题 摘要:```cpp #include #include using namespace std; int t,n,m; long long dp[35][35][35]; long long D…… 题解列表 2022年12月30日 0 点赞 0 评论 541 浏览 评分:9.9
暴力解法(凑字数。。。。。。。 摘要:解题思路:注意事项:参考代码:def shu(gewei,ci): if ci==1: return gewei else: return gewei*10*…… 题解列表 2022年12月30日 0 点赞 0 评论 307 浏览 评分:0.0
最高的分数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[1000],i,n,max=0; scanf("%d",&n); fo…… 题解列表 2022年12月30日 0 点赞 2 评论 547 浏览 评分:9.5
求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10000],i,n; double ave,s=0; scanf("…… 题解列表 2022年12月30日 0 点赞 0 评论 1560 浏览 评分:9.8
简单易懂(狗头) 摘要:解题思路:注意事项: 本题求解的是血压连续正常的最长小时数,连续正常!连续正常!连续正常!意思是一旦不正常,前面算正常的时间都需要重新算起。所以本题要建立一个数组,用以保存每一次的flag值,以防数…… 题解列表 2022年12月30日 0 点赞 0 评论 594 浏览 评分:8.0