666666666666666666 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<cstring>using namespace std;const int N=1e…… 题解列表 2023年02月20日 0 点赞 0 评论 434 浏览 评分:9.9
1030: [编程入门]二维数组的转置 摘要:```cpp #include using namespace std; /* 题目描述 写一个函数,使给定的一个二维数组(3×3)转置,即行列互换。 输入格式 一个3x3的矩阵 输…… 题解列表 2023年02月20日 0 点赞 1 评论 579 浏览 评分:9.9
题解 2831: 画矩形 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { char ch; int i, j, h, l, flag; //h,高,l,长;flag为空…… 题解列表 2023年02月20日 0 点赞 0 评论 595 浏览 评分:9.9
题解 2832: 第n小的质数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int isPrime(int n) { int i, k; k = (i…… 题解列表 2023年02月20日 1 点赞 1 评论 770 浏览 评分:9.9
1033: [编程入门]自定义函数之字符提取 摘要:```cpp #include #include #include using namespace std; /* 题目描述 写一函数,将一个字符串中的元音字母复制到另一个字符串,然后输…… 题解列表 2023年02月20日 0 点赞 1 评论 474 浏览 评分:9.9
蓝桥杯2022年第十三届省赛真题-GCD 摘要:解题思路://考察gcd性质,根据更相减损术可以知道一个等式:gcd(a,b)=gcd(a,b-a) 当然这里的前提时a<=b;//所以gcd(a+k,b+k)=gcd(a+k,b-a) 这里的a…… 题解列表 2023年02月20日 0 点赞 0 评论 1989 浏览 评分:9.9
最最最简单的一种方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3]; int i,j; //int t; for(i=0;i<3;i…… 题解列表 2023年02月21日 0 点赞 0 评论 616 浏览 评分:9.9
新手版,简单易懂 摘要:解题思路:循环赋值注意事项:转换类型参考代码: Scanner scanner = new Scanner(System.in); int shuru = scanner.…… 题解列表 2023年02月21日 0 点赞 2 评论 355 浏览 评分:9.9
1332: 津津的储蓄计划(python) 摘要:解题思路:注意事项:参考代码:m = 0 x = 0 month = 1 isTrue = True while True: try: n = int(input(…… 题解列表 2023年02月21日 0 点赞 0 评论 878 浏览 评分:9.9
1654: 蓝桥杯算法训练VIP-确定元音字母位置(超级简洁)(超级易懂)新手也适合看 摘要: import java.util.*; public class 确定元音字母位置 { public static void main(String[] args) { Scanner…… 题解列表 2023年02月21日 0 点赞 0 评论 627 浏览 评分:9.9