题解列表

筛选

二级C语言-平均值计算

摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(int argc, char** argv) {    int a,b,c,d,e,……

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",……
优质题解

利用三个for循环实现题目要求

摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![……

求水仙花数

摘要:预览,如果感觉基本编辑界面太小太窄也可以使用全屏。** ##### 插入代码 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[……