题解列表

筛选

2832: 第n小的质数

摘要:解题思路:注意事项:参考代码:def isPrime(su):    if su==2:        return true    if su%2==0:        return False  ……

[编程入门]阶乘求和

摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    long long n,Sn=1,a=1;    cin>>n;    f……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m, a[100][100]; while (scanf("%d %d", &m, &n) != ……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, i, j,a[1000],sum=1,max_sum=1,max_num;    scanf……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char str[501];    gets(str);    str……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,a[20], b[20],i,j,k,sum=0;    while (scanf("%d",……

求水仙花数

摘要:预览,如果感觉基本编辑界面太小太窄也可以使用全屏。** ##### 插入代码 x=y=z=d=0 for i in range(100,1000): x=i//100 y……

编写题解 2943: Vigenère密码

摘要:解题思路:输入-小写转换大写-密文转明文-大写转为小写输出注意事项:套用公式用于大写字母,输出时保留大小写,所以用f[i]标记小写字母;如果k密钥长度不够,用(i%k_len)求;公式:m[i]=c[……

自由下落的距离计算

摘要: ## 我的代码 ```python m,n=map(int,input().strip().split()) a=0 b=m #这里将b的初值设为m,因为落下距离容易被忽略,也可以不写……