python入门题之温度转换 摘要:解题思路:先定义浮点型“f”然后括号输入,再写出温度转换的主要公式,之后输出c的时候记得用大括号,0,冒号,“.2f”是指后两位,然后连起来就是0后两位,也就是小数点后两位,' '这个…… 题解列表 2022年04月09日 0 点赞 0 评论 796 浏览 评分:2.0
编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; int i; ge…… 题解列表 2022年04月11日 0 点赞 0 评论 440 浏览 评分:2.0
[编程入门]猴子吃桃的问题 【公式求解】 摘要:解题思路:求出公式注意事项:公式:2**(n-1) +2**n-2参考代码:n = int(input())a = 2**(n-1) +2**n-2print(a)…… 题解列表 2022年04月13日 0 点赞 0 评论 564 浏览 评分:2.0
C++实现贷款计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; float c; cin>>a>>…… 题解列表 2022年04月25日 0 点赞 0 评论 879 浏览 评分:2.0
1169: 绝对值排序 摘要:解题思路:利用冒泡法进行排序注意事项:while循环时一定要记得设置输入的数不为0参考代码:#include <stdio.h>#include <stdlib.h> int main(){ i…… 题解列表 2022年05月03日 0 点赞 0 评论 404 浏览 评分:2.0
成绩评定 题解(c++暴力简单) 摘要:解题思路:不就是暴力判断嘛!还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d…… 题解列表 2022年05月08日 0 点赞 0 评论 412 浏览 评分:2.0
蓝桥杯算法提高VIP-计算质因子 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool isprime(int x) { //判断质数 for(int i …… 题解列表 2022年05月08日 0 点赞 0 评论 366 浏览 评分:2.0
蓝桥杯算法提高VIP-输出九九乘法表 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" Nine-by-nine Multipli…… 题解列表 2022年05月08日 0 点赞 0 评论 636 浏览 评分:2.0
蓝桥杯算法提高VIP-输出正反三角形 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { int a, b; cin >> a >>…… 题解列表 2022年05月08日 0 点赞 0 评论 405 浏览 评分:2.0
c++格子刷油漆 摘要:解题思路:https://www.freesion.com/article/4385447958/参考代码:#include<iostream> using namespace std; int …… 题解列表 2022年05月08日 0 点赞 0 评论 714 浏览 评分:2.0