2797: 最高的分数 摘要:```cpp #include using namespace std; int main() { int a,n,max; cin>>n; max=0; …… 题解列表 2023年01月29日 0 点赞 0 评论 795 浏览 评分:9.9
表达式括号匹配(stack) 栈的基本应用 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;stack<char>ver;//存放'(' 如果遇到 ')…… 题解列表 2023年01月29日 0 点赞 0 评论 569 浏览 评分: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 评论 334 浏览 评分: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 n; scanf("%d", &n);//n*n形式的矩阵(从1开始) i…… 题解列表 2023年01月28日 0 点赞 0 评论 582 浏览 评分: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 评论 402 浏览 评分: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
水仙花数"问题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 评论 844 浏览 评分:0.0
取石子游戏 摘要:解题思路:注意事项:参考代码:from math import sqrttry: while True: a,b=map(int,input().split()) i…… 题解列表 2023年01月27日 0 点赞 0 评论 502 浏览 评分:0.0
判断能否被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