题解列表

筛选

题解 2780: 奇偶数判断

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

编写题解 2780: 奇偶数判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    if(n%2……

题解 2997: 梯形面积

摘要:解题思路:在梯形中阴影部分面积是150平方厘米,求梯形面积。众所周知,梯形的面积公式是S=(上底+下底)×高÷2其中,上底为15厘米,下底为25厘米高指的是图中上底与下底之间互相垂直的线段题目给出的是……

编写题解 2779: 输出绝对值

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double a;    cin>>a;    pr……

for循环简单解题

摘要:解题思路:注意事项:是s【f-1】,不是s【i-】哦!!!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s; ……

感觉不错的方法

摘要:解题思路:用布尔函数判断是否为素数注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a = 0;    cin >>……

编写题解 1160: 出圈(队列)

摘要:解题思路:把m-1个数加到后面之后,删除第一个数即可注意事项:参考代码:while True:    try:        n,m = map(int,input().split())       ……