题解列表

筛选

python入门题之温度转换

摘要:解题思路:先定义浮点型“f”然后括号输入,再写出温度转换的主要公式,之后输出c的时候记得用大括号,0,冒号,“.2f”是指后两位,然后连起来就是0后两位,也就是小数点后两位,' '这个……

C++实现贷款计算

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

1169: 绝对值排序

摘要:解题思路:利用冒泡法进行排序注意事项:while循环时一定要记得设置输入的数不为0参考代码:#include <stdio.h>#include <stdlib.h> int main(){    i……

成绩评定 题解(c++暴力简单)

摘要:解题思路:不就是暴力判断嘛!还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d……

c++格子刷油漆

摘要:解题思路:https://www.freesion.com/article/4385447958/参考代码:#include<iostream> using namespace std; int ……