2177 信息学奥赛一本通T1252-走迷宫(c++bfs版) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include…… 题解列表 2023年01月27日 0 点赞 0 评论 857 浏览 评分: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 评论 1279 浏览 评分:8.8
取石子游戏 摘要:解题思路:注意事项:参考代码:from math import sqrttry: while True: a,b=map(int,input().split()) i…… 题解列表 2023年01月27日 0 点赞 0 评论 502 浏览 评分: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 评论 845 浏览 评分:0.0
Tom数(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,s; char a[100]; while(…… 题解列表 2023年01月28日 0 点赞 0 评论 665 浏览 评分: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 评论 403 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ //同行列对角线的格子 int n; scanf("%d", &n);//n*n形式的矩阵(从1开始) i…… 题解列表 2023年01月28日 0 点赞 0 评论 583 浏览 评分:0.0
编写题解 2263: 蓝桥杯2015年第六届真题-饮料换购 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main1 { public static void main(String[] arg…… 题解列表 2023年01月28日 0 点赞 0 评论 372 浏览 评分:0.0
自定义函数之整数处理 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i = 0,j=0,num=0,max=0,min=0; int a[10]; for (i = 0; …… 题解列表 2023年01月29日 0 点赞 0 评论 335 浏览 评分:0.0
表达式括号匹配(stack) 栈的基本应用 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;stack<char>ver;//存放'(' 如果遇到 ')…… 题解列表 2023年01月29日 0 点赞 0 评论 569 浏览 评分:0.0