是个人就能懂,不服来辩 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d%d%d%d%d%d%d%d%d%d",&a…… 题解列表 2023年12月10日 0 点赞 0 评论 426 浏览 评分:9.9
合法c标识符 摘要:解题思路:注意事项:参考代码://用标记法 #include<stdio.h> #include<string.h>//用来调出函数srtlen,以此定义数组长度 int main() {…… 题解列表 2023年12月10日 0 点赞 0 评论 450 浏览 评分:9.9
暴力穷举找最大公约数和最小公倍数 摘要:首先感谢指正,我的第一代代码考虑不全,虽然能过测试,但是出现特殊值就要完蛋。这是我的第一代#include<stdio.h> int main() { int a,b,t=1; scanf…… 题解列表 2023年12月10日 0 点赞 0 评论 378 浏览 评分:9.9
两个数的最大公约数和最小公倍数 摘要:解题思路:直接暴力枚举法注意事项:计算式不要写错参考代码:import java.util.Scanner;public class Main { public static void main(St…… 题解列表 2023年12月11日 0 点赞 3 评论 721 浏览 评分:9.9
题解 3010: 奇偶数之和 C语言 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int main() { int n, i; int sum…… 题解列表 2023年12月11日 0 点赞 1 评论 432 浏览 评分:9.9
题解 2909: 直方图 摘要: #include using namespace std; int a,b=0,c,d[20000],e[200000]; int main() { …… 题解列表 2023年12月11日 0 点赞 1 评论 346 浏览 评分:9.9
津津的储蓄计划 摘要:解题思路:注意事项: 该赋的初值一定要注意赋!参考代码://用标记法 #include<stdio.h> int main() { int i,flag…… 题解列表 2023年12月11日 0 点赞 0 评论 421 浏览 评分:9.9
冒泡法轻松解开! 摘要:解题思路:先输入前九个元素,然后输入插入元素,再然后使用冒泡法进行整体排序注意事项:参考代码:#include <stdio.h>int main(){ int arr[10]; for (int a…… 题解列表 2023年12月11日 0 点赞 0 评论 327 浏览 评分:9.9
2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月11日 0 点赞 0 评论 522 浏览 评分:9.9
2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; …… 题解列表 2023年12月11日 0 点赞 0 评论 465 浏览 评分:9.9