题解列表
[编程入门]自定义函数处理最大公约数与最小公倍
摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int gongyinshu(int,int); int gongbeishu(int,int)……
密码破译 [编程入门]密码破译
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[11]; //定义一个长度为10的……
1637: 蓝桥杯算法训练VIP-斜率计算
摘要:n,b=map(str,input().split())
x,y=map(str,input().split())
if n==x:
print('INF')
else……
自由下落的距离计算(新手入门)
摘要:解题思路:等比数列求和注意事项:最后的一个s多加了两个h,最后要减去参考代码:#include<stdio.h>int main(){ int m,n,i; float h,s; scanf("%d%……
[编程入门]Sn的公式求和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,Sn = 0,i,a = 0; scanf("%d",&n); for(i=0; ……