自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

GinSmile的博客

What hurts more? The pain of hard work or the pain of regret?

  • 博客(7)
  • 资源 (4)
  • 问答 (2)
  • 收藏
  • 关注

原创 杭电ACM 2021 发工资咯:)

http://acm.hdu.edu.cn/showproblem.php?pid=2021 #include using namespace std; int main() { int n; int c100,c50,c10,c5,c2,c1,cont; int a[100]; while(cin>>n&&n!=0){ int i; cont=0; for(i

2012-07-28 23:09:05 2238

原创 杭电ACM 2020 绝对值排序

http://acm.hdu.edu.cn/showproblem.php?pid=2020 #include using namespace std; int main() { int n; while(cin>>n&&n!=0){ int a[100]={0}; for(int i=0;i<n;i++) cin>>a[i]; for(int i=0;

2012-07-28 22:45:51 3414

原创 杭电ACM 2019 数列有序!

http://acm.hdu.edu.cn/showproblem.php?pid=2019 #include using namespace std; int main() { int n,m; while(cin>>n>>m&&!(n==0&&m==0)){ int a[101]={0}; for(int i=0;i<n;i++) cin>>a[i]; for(

2012-07-28 21:20:22 4651

原创 杭电ACM 2018 母牛的故事

http://acm.hdu.edu.cn/showproblem.php?pid=2018 #include using namespace std; int Fun(int n){ int n1[55],n2[55],n3[55],n4[55]; //n4 is muniu //n1 活了1年 //n1 活了2年 //n1 活了3年 for(int ix=

2012-07-28 18:41:47 3288

原创 杭电ACM 2016 数据的交换输出

http://acm.hdu.edu.cn/showproblem.php?pid=2016 #include using namespace std; int find_min(int *a,int i){ int min=0; for(int ix=0;ix<i;ix++){ if(a[ix]<a[min]) min=ix; } return min; } int

2012-07-28 17:31:38 2265

原创 杭电ACM 2015 偶数求和

http://acm.hdu.edu.cn/showproblem.php?pid=2015 #include using namespace std; int main(){ int res[100]; int cont=0; int a[100];// to store the origin numbs int n,m,sum=0,num=0; a[0]=2; fo

2012-07-26 19:24:38 2976

原创 杭电ACM 2012 素数判定

http://acm.hdu.edu.cn/showproblem.php?pid=2012 #include using namespace std; int IsNotSushu(int a){ for(int i=2;i<=a/2;i++){ if(a%i==0) return 1; } return 0; } int main(){ int x,y; while(cin>

2012-07-26 17:16:02 3565

文曲星猜数字游戏(包含图形界面)

文曲星猜数字游戏的Java Swing实现~~ 内含有Java源代码,install安装包。

2013-03-24

SmartTaskMan

一个简单的android进程管理器,源文件,欢迎分享。xujin的课设作业

2013-01-18

SmartTaskMan(进程管理器)

一个自己写的进程管理器apk,可以进行进程的查看和杀死,也可查看service和task

2013-01-07

ListView的进程信息

Android开发学习笔记(十一)ListView/ActivityManager/ArrayAdapter学习 详见http://blog.csdn.net/xujinsmile/article/details/8464080

2013-01-04

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

TA关注的人

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