自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 1025 反转链表 (25分)

#include<iostream>#include<algorithm>#include<string>using namespace std;int main(){int first,n,k;cin>>first>>n>>k;int data[100001];int next[1...

2020-04-21 18:13:49 78

原创 1024 科学计数法 (20分)

代码来自https://www.liuchuo.net/archives/551#include<iostream>#include<string>#include<string.h>#include<math.h>//#include<stdafx.h>using namespace std;int main(){...

2020-04-20 10:58:30 74

原创 1023 组个最小数 (20分)

#include <iostream>#include <string>#include <algorithm>using namespace std;int main(){ int a[11]; int b[101]; int i; int j; int length=0; for(i=0;i<1...

2020-04-19 17:54:01 51

原创 1022 D进制的A+B (20分)

#include <iostream>//十进制转任何进复制都是采用整数除n取余倒序排列;#include <string>#include <algorithm>using namespace std;int main(){ int a,b,c; cin>>a>>b; c=a+b; int d;...

2020-04-19 11:47:43 59

原创 1021 个位数统计 (15分)

#include <iostream>#include <string>#include <algorithm>#include<stdlib.h>#include<math.h>using namespace std;int main(){ int j; string s; cin>&gt...

2020-04-18 23:16:03 68

原创 1020 月饼 (25分)

#include <iostream>#include <string>#include <algorithm>#include<stdlib.h>#include<math.h>using namespace std;//分类排序用结构体鸭struct yuebing{ double a; double ...

2020-04-18 22:56:09 85

原创 PAT乙级:1019 数字黑洞 (20分)

#include <iostream>#include <string>#include <algorithm>#include<stdlib.h>#include<math.h>using namespace std;bool cmp1(int a,int b){ if(a!=b) retur...

2020-04-18 21:50:46 64

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除