编写题解 1671: 小九九 摘要:````python for i in range(1,10): for j in range(1,10): if i>=j: print("{1}…… 题解列表 2023年10月20日 0 点赞 0 评论 229 浏览 评分:0.0
验证子串(二种方法) 摘要:解题思路:注意事项:参考代码:第一种强行解题,硬解:#include<stdio.h> #include<string.h> int main() { char a[200]; char…… 题解列表 2023年10月21日 0 点赞 0 评论 339 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 代码简单!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int num=0; //记三元组的个数 scanf ("%d",&n);…… 题解列表 2023年10月21日 1 点赞 0 评论 194 浏览 评分:0.0
2973: 出现次数超过一半的数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[1005];int main(){ int n; c…… 题解列表 2023年10月21日 0 点赞 0 评论 274 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tong[1005];int main(){ int n; c…… 题解列表 2023年10月21日 0 点赞 0 评论 133 浏览 评分:0.0
1720: 数据结构-基数排序 摘要:解题思路:注意事项:参考代码://sort排序#include <bits/stdc++.h>using namespace std;int a[100005];int main(){ int …… 题解列表 2023年10月21日 0 点赞 0 评论 162 浏览 评分:0.0
2332: 信息学奥赛一本通T1181-整数奇偶排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[10005];int main(){ for(int i=1; …… 题解列表 2023年10月21日 0 点赞 0 评论 174 浏览 评分:0.0
汽水瓶(题目要看全,还剩两个空瓶,可向老板借一瓶) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; while(~scanf("%d",&n)) { if(n=…… 题解列表 2023年10月21日 0 点赞 0 评论 120 浏览 评分:0.0
判断第几天C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool IsLeapYear(int year)//用来判断是否是闰年{ if (y…… 题解列表 2023年10月21日 0 点赞 0 评论 172 浏览 评分:0.0
弟弟的作业(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[20]; int sum=0; whi…… 题解列表 2023年10月21日 0 点赞 0 评论 173 浏览 评分:0.0