判断能否被3、5、7整除(浅卡一个bug)通俗易懂 摘要:解题思路:短注意事项:无参考代码:#include<stdio.h>int main(){ long long int n; scanf("%lld", &n); if (n % 3 == 0) p…… 题解列表 2023年01月27日 0 点赞 0 评论 1067 浏览 评分:8.8
2177 信息学奥赛一本通T1252-走迷宫(c++bfs版) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include…… 题解列表 2023年01月27日 0 点赞 0 评论 695 浏览 评分:9.9
过滤多余空格,不可能有比这还简单的!!!!!一看就懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; char s[1000]; gets(s); for(i=0;s[i]!='…… 题解列表 2023年01月27日 0 点赞 0 评论 615 浏览 评分:9.9
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d %d…… 题解列表 2023年01月27日 0 点赞 1 评论 607 浏览 评分:9.9
C++的通俗易懂方法 摘要:解题思路:拆解题目的过程,一次接一次地分析反弹的过程,从而能分析出反弹过程的共性和不同点注意事项:参考代码:#include <iostream>#include<cmath>#include<iom…… 题解列表 2023年01月27日 0 点赞 0 评论 364 浏览 评分:9.9
1670: 拆分位数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a,b,c; cin>>n; c=n%10; b=n%10…… 题解列表 2023年01月26日 0 点赞 0 评论 182 浏览 评分:0.0
快 速 排 序 摘要:```c #include #include int gg(const void*x,const void*y) { return *(int*)x-*(int*)y; } int m…… 题解列表 2023年01月26日 0 点赞 0 评论 432 浏览 评分:9.9
回文数(python中函数的递归) 摘要:解题思路:注意事项:参考代码:while True: try: n = int(input()) count = 0 &n 题解列表 2023年01月26日 0 点赞 0 评论 619 浏览 评分:9.9
非常基础的方式 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int arr[20] = { 0 }; int i = 0; int …… 题解列表 2023年01月26日 0 点赞 0 评论 180 浏览 评分:0.0
去括号(我都不知道自己写的啥) 摘要:解题思路:注意事项:参考代码:syouxianji = {'^':6,'/':4,'*':3,'-':2,'+':1,&…… 题解列表 2023年01月26日 0 点赞 0 评论 280 浏览 评分:0.0