题解列表

筛选

编写题解 2772: 苹果和虫子

摘要:解题思路:无注意事项:无参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double n,x,y;    cin>>n>……

奥运奖牌计数

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

整数序列的元素最大跨度值

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

字符串连接

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

编写题解 2918: 成绩排序

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u {     int k;     string s……

2990: 十进制到八进制

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a[1000],cnt;int main(){    cin>>n; ……