题解列表

筛选

2780: 奇偶数判断

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int a;    cin >> a;    if(a%2==……

2780: 奇偶数判断

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int a;    cin >> a;    if(a%2==……

1002: [编程入门]三个数最大值

摘要:解题思路:注意事项:这里要比较六次参考代码:#include <iostream>using namespace std;int main(){    int a,b,c;    cin >> a>>……

水陆距离(朴素方法易懂版)

摘要:解题思路:这思路是优质题解的思路https://blog.dotcpp.com/a/8945思路如下①:若某陆地上下左右其中有一个是水域,则该陆地到水域的最短距离一定为1②:两个点的距离为x坐标相减的……

2781: 奇偶ASCII值判断

摘要:解题思路:注意事项:yes、和no是大写的参考代码:#include <iostream>using namespace std;int main(){    char c;    cin >>c; ……

3006: 适合晨练

摘要:解题思路:注意事项:25<=t<=30应为(25<=t && t<=30)参考代码:#include <iostream>using namespace std;int main(){    int ……

题解 1783: 星期判断机

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a;    cin>>a;    switch(a)  ……

编写题解 3006: 适合晨练

摘要:解题思路:#include <bits/stdtr1c++.h>using namespace std;int main(){    int t;    cin>>t;    if(25<=t && ……