数字整除 这个题我就是用的小学的竖除法 一步一步算 摘要:解题思路:竖除法注意事项:不要跟着题走,自己要有一些创新想法参考代码:#include<iostream>#include<string>using namespace std; int main()…… 题解列表 2023年04月18日 0 点赞 0 评论 390 浏览 评分:0.0
1062: 二级C语言-公约公倍 摘要:参考代码:#include <stdio.h>int main(){ int m, n; scanf("%d %d", &m,&n); int gysf(int m,int n); …… 题解列表 2023年04月18日 0 点赞 0 评论 522 浏览 评分:0.0
Java简单做法 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年04月18日 0 点赞 0 评论 348 浏览 评分:0.0
蓝桥杯算法训练VIP-整数平均值 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年04月18日 0 点赞 0 评论 298 浏览 评分:0.0
死在精度上面 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int k,i=1; double sn=0.0;\\float类型超过了精度,答案输出错误 scanf("…… 题解列表 2023年04月18日 0 点赞 0 评论 359 浏览 评分:0.0
蓝桥杯算法提高VIP-不同单词个数统计(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char arr1[1000],arr2[100][100]; …… 题解列表 2023年04月19日 0 点赞 0 评论 410 浏览 评分:0.0
这个就是前几道题分数相加的变式 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ double s = 1;//设初值为1,表示从1开始减 i…… 题解列表 2023年04月19日 0 点赞 0 评论 370 浏览 评分:0.0
判断逗号的输出个数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ int N, M,count=0; int a[5000]; …… 题解列表 2023年04月19日 0 点赞 0 评论 314 浏览 评分:0.0
编写题解 1097: 蛇行矩阵 不理解就找我 嘎嘎简单 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n = 0; int a[20][20] = { 0 }; i…… 题解列表 2023年04月20日 0 点赞 0 评论 337 浏览 评分:0.0
2857: 加密的病历单 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring> #include <algorithm> using namespace std; …… 题解列表 2023年04月20日 0 点赞 0 评论 398 浏览 评分:0.0