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 评论 678 浏览 评分:9.9
过滤多余空格,不可能有比这还简单的!!!!!一看就懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; char s[1000]; gets(s); for(i=0;s[i]!='…… 题解列表 2023年01月27日 0 点赞 0 评论 756 浏览 评分:9.9
2177 信息学奥赛一本通T1252-走迷宫(c++bfs版) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include…… 题解列表 2023年01月27日 0 点赞 0 评论 829 浏览 评分:9.9
判断能否被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 评论 1244 浏览 评分:8.8
取石子游戏 摘要:解题思路:注意事项:参考代码:from math import sqrttry: while True: a,b=map(int,input().split()) i…… 题解列表 2023年01月27日 0 点赞 0 评论 469 浏览 评分:0.0
水仙花数"问题2(C语言,通俗易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n = 100; int m = 0; for (n = 100,m=0…… 题解列表 2023年01月28日 0 点赞 0 评论 812 浏览 评分:0.0
Tom数(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,s; char a[100]; while(…… 题解列表 2023年01月28日 0 点赞 0 评论 625 浏览 评分:0.0
2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d", &n);//n*n int i, j; scanf("%d %d", …… 题解列表 2023年01月28日 0 点赞 0 评论 383 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ //同行列对角线的格子 int n; scanf("%d", &n);//n*n形式的矩阵(从1开始) i…… 题解列表 2023年01月28日 0 点赞 0 评论 550 浏览 评分:0.0
编写题解 2263: 蓝桥杯2015年第六届真题-饮料换购 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main1 { public static void main(String[] arg…… 题解列表 2023年01月28日 0 点赞 0 评论 343 浏览 评分:0.0