首页 > 代码库 > HDU step by step
HDU step by step
section 1 不解释~
section 2
1.2.1 a+b coming
1 #include<stdio.h> 2 long long z,x,y; 3 int main( ) 4 { 5 while( scanf( "%I64x%I64x",&x,&y ) != EOF ) 6 { 7 z = x + y; 8 if( z < 0 ) 9 printf( "-" ), z = -z;10 printf( "%d\n",z );11 }12 return 0;13 }
1.2.2 Climbing Worm
1 // 2 // _oo0oo_ 3 // o8888888o 4 // 88" . "88 5 // (| -_- |) 6 // 0\ = /0 7 // ___/`---‘\___ 8 // .‘ \\| |// ‘. 9 // / \\||| : |||// 10 // / _||||| -:- |||||- 11 // | | \\\ - /// | |12 // | \_| ‘‘\---/‘‘ |_/ |13 // \ .-\__ ‘-‘ ___/-. /14 // ___‘. .‘ /--.--\ `. .‘___15 // ."" ‘< `.___\_<|>_/___.‘ >‘ "".16 // | | : `- \`.;`\ _ /`;.`/ - ` : | |17 // \ \ `_. \_ __\ /__ _/ .-` / /18 // =====`-.____`.___ \_____/___.-`___.-‘=====19 // `=---=‘20 //21 //22 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~23 //24 // 佛祖保佑 永无BUG25 //26 //27 //28 #include<iostream>29 #include<string.h>30 #include<stdio.h>31 #include<ctype.h>32 #include<algorithm>33 #include<stack>34 #include<queue>35 #include<set>36 #include<math.h>37 #include<vector>38 #include<map>39 #include<deque>40 #include<list>41 using namespace std;42 int main()43 {44 int a,b,c;45 while(cin>>c>>a>>b)46 {47 if(a+b+c==0)48 break;49 int t=0;50 while(c>0)51 {52 t++;53 c-=a;54 if(c<=0)55 break;56 c+=b;57 t++;58 }59 printf("%d\n",t);60 }61 return 0;62 }
1.2.3 finacial management
1 // 2 // _oo0oo_ 3 // o8888888o 4 // 88" . "88 5 // (| -_- |) 6 // 0\ = /0 7 // ___/`---‘\___ 8 // .‘ \\| |// ‘. 9 // / \\||| : |||// 10 // / _||||| -:- |||||- 11 // | | \\\ - /// | |12 // | \_| ‘‘\---/‘‘ |_/ |13 // \ .-\__ ‘-‘ ___/-. /14 // ___‘. .‘ /--.--\ `. .‘___15 // ."" ‘< `.___\_<|>_/___.‘ >‘ "".16 // | | : `- \`.;`\ _ /`;.`/ - ` : | |17 // \ \ `_. \_ __\ /__ _/ .-` / /18 // =====`-.____`.___ \_____/___.-`___.-‘=====19 // `=---=‘20 //21 //22 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~23 //24 // 佛祖保佑 永无BUG25 //26 //27 //28 #include<iostream>29 #include<string.h>30 #include<stdio.h>31 #include<ctype.h>32 #include<algorithm>33 #include<stack>34 #include<queue>35 #include<set>36 #include<math.h>37 #include<vector>38 #include<map>39 #include<deque>40 #include<list>41 using namespace std;42 int main()43 {44 float a=0,b;45 for(int i=1;i<=12;i++)46 {47 cin>>b;48 a+=b;49 }50 printf("$%.2lf\n",a/12);51 return 0;52 }
HDU step by step
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。