编写题解 3007: 收费 摘要:解题思路:注意事项:不要用int,用double参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a; …… 题解列表 2023年12月17日 0 点赞 0 评论 586 浏览 评分:0.0
题解 1050: [编程入门]结构体之成绩记录(超超超级简单) ```c#include#includestructstudent{charshuju[20];charname[20];intchinese;intenglish;intmath;};structstudenta[100];voidinput(inti){scanf("%s%s%d%d%d", 题解列表 2023年12月17日 0 点赞 0 评论 414 浏览 评分:0.0
直接插入排序,折半插入排序、希尔排序 摘要:直接插入排序#include <stdio.h> int main() { int a[10], key; // 输入已排序的数组 for (int i = 0…… 题解列表 2023年12月17日 0 点赞 0 评论 508 浏览 评分:0.0
题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:用&&参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; …… 题解列表 2023年12月17日 0 点赞 0 评论 391 浏览 评分:0.0
题解 1050: [编程入门]结构体之成绩记录(超超超级简短) ```c#include#includestructstudent{charshuju[20];charname[20];intchinese;intenglish;intmath;};structstudenta[100];voidinput(inti){scanf("%s%s%d%d%d", 题解列表 2023年12月17日 0 点赞 0 评论 488 浏览 评分:6.0
2780: 奇偶数判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a; cin >> a; if(a%2==…… 题解列表 2023年12月17日 0 点赞 0 评论 388 浏览 评分:0.0
2780: 奇偶数判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a; cin >> a; if(a%2==…… 题解列表 2023年12月17日 0 点赞 0 评论 560 浏览 评分:0.0
1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:这里要比较六次参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin >> a>>…… 题解列表 2023年12月17日 0 点赞 0 评论 490 浏览 评分:4.7
水陆距离(朴素方法易懂版) 解题思路:这思路是优质题解的思路https://blog.dotcpp.com/a/8945思路如下①:若某陆地上下左右其中有一个是水域,则该陆地到水域的最短距离一定为1②:两个点的距离为x坐标相减的差得绝对值与y坐标相减差的绝对值之和③:把所有水域的坐标保存起来, 题解列表 2023年12月17日 0 点赞 0 评论 734 浏览 评分:9.9
2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:yes、和no是大写的参考代码:#include <iostream>using namespace std;int main(){ char c; cin >>c; …… 题解列表 2023年12月17日 0 点赞 0 评论 425 浏览 评分:0.0