渺小小螃蟹
渺小小螃蟹
全部文章
分类
题解(54)
归档
标签
去牛客网
登录
/
注册
渺小小螃蟹的博客
全部文章
(共54篇)
题解 | #找x#
#include<stdio.h> int main() { int a[201]; int n,x; while(scanf("%d",&n)!=EOF) { for(int i=0;i<n;i++) { ...
2021-05-10
0
466
题解 | #奥运排序问题#
//学不会的程序 #include <stdio.h> #define N 233 //截止到2021年,全世界有233个国家和地区 int main() { int n,m; while(scanf("%d%d",&n,&m)!=EOF) //国家...
2021-05-09
4
813
题解 | #特殊排序#
//类似成绩排序,定义函数更简单一些 #include<iostream> #include<algorithm> using namespace std; struct mouse { int weight; char color[10]; }; bo...
2021-05-09
1
601
题解 | #特殊排序#
//c语言代码,在冒泡排序的基础上多了两个条件判断 #include <stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF) { if(n==1) { ...
2021-05-09
1
595
题解 | #字符串内排序#
//冒泡排序? #include <stdio.h> #include <string.h> main () { char c[200],t; while(scanf("%s",&c)!=EOF) { for(int i=0;...
2021-05-09
2
565
题解 | #整数奇偶排序#
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int arr[10]; bool Compare(int x,int y) { if(x...
2021-05-09
2
579
题解 | #成绩排序#
//结构体是好东西啊 #include<iostream> #include<algorithm> using namespace std; struct Student { int id; int score; }; bool compare(Stud...
2021-05-09
3
569
题解 | #排序#
#include<stdio.h> int main() { int n; int a[200]; scanf("%d",&n); int i; for(i=1;i<=n;i++) { scanf("%d",...
2021-05-09
2
530
题解 | #Grading#
#include<stdio.h> #include<math.h> int main() { int P,T,G1,G2,G3,GJ,a,b,c; float grade; while(scanf("%d %d %d %d %d %d",&...
2021-05-08
3
577
题解 | #xxx定律#
//算法笔记p85 害死人不偿命的(3n+1)猜想 卡拉兹猜想#include<stdio.h>int main(){ int n,step=0; while(scanf("%d",&n)!=EOF) { while(n!=1) {...
2021-05-08
3
629
首页
上一页
1
2
3
4
5
6
下一页
末页