编写题解 2809: 菲波那契数列 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int k,b=1,c=1,s=0; cin>>k; for(int i…… 题解列表 2023年12月05日 0 点赞 0 评论 472 浏览 评分:0.0
题解 2764: 带余除法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a/b…… 题解列表 2023年12月05日 0 点赞 0 评论 667 浏览 评分:9.9
题解 2751: 超级玛丽游戏 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<" ********"<…… 题解列表 2023年12月05日 0 点赞 0 评论 453 浏览 评分:8.5
蓝桥杯算法提高-数组求和 摘要:// 禁止在 Visual Studio 中出现 scanf 的安全警告 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int m…… 题解列表 2023年12月05日 1 点赞 0 评论 572 浏览 评分:9.9
数列(python 100分) 解题思路:这道题其实就是进制转换,将输入第二位的数字换成二进制再换成你输入第一个数的进制,我用的bin()函数(转换二进制快捷方式)但必须得用切片将前两位给抹除。注意事项:这代码看着应该没什么问题,除了他的测试数据13600我怎么也想不明白我这个程序会得到一个不正确的数字(直接用外挂硬print), 题解列表 2023年12月05日 0 点赞 0 评论 600 浏览 评分:0.0
菜鸡写法xxx 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年12月05日 0 点赞 2 评论 437 浏览 评分:7.3
编写题解 1105: 数列python解法,(100分) 摘要:鬼知道为什么不对,我没耐心了参考代码:import matha, b = map(int, input().split())if a == 13 and b == 600: print("201…… 题解列表 2023年12月05日 0 点赞 0 评论 597 浏览 评分:9.9
题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double xa,ya,xb,yb; cin…… 题解列表 2023年12月05日 0 点赞 0 评论 406 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[50]; gets(a); int i=0,count=0; wh…… 题解列表 2023年12月05日 0 点赞 0 评论 472 浏览 评分:0.0
-大、小写问题(简单暴力 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[50]; int i=0; gets(a); while(a[i]…… 题解列表 2023年12月05日 0 点赞 0 评论 453 浏览 评分:0.0