题解列表

筛选

题目 1160: 出圈

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

StringBuffer中的reverse

摘要:# ```java public class c1031 { public static void main(String[] args) { // TODO 自动生成的方法……

编写题解 1106: 奖学金

摘要:解题思路:结构体由总分,学号,语数英三部分组成,然后按照代码所示的嵌套条件进行排序。注意事项:参考代码:#include<stdio.h>typedef struct Student{ int num……

小白单纯记录自己题解

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int temp,j,i,m,n,a[1000],b[1000]……

和为给定数

摘要:``` import java.util.Arrays; import java.util.Scanner; public class Demo2176 { public static ……

C++简短小白解法

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    long long int i,item,sum=0;……