cheng_you_know

学而时习之!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年7月6日

摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1063 #include #include #include int memory[130]={1,0};int len;void multiplication(int n){int carry=0,i;for(i=0;i=len){printf(".");for(i=0;i=0;i--)printf(... 阅读全文
posted @ 2013-07-06 11:36 cheng_you_know 阅读(182) 评论(0) 推荐(0) 编辑

摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1061 #include using namespace std;int most_right_NN(__int64 N){int result =1;int temp = N%10;if(temp == 0)return 0;while(N){if(N & 0x01)result =(result *... 阅读全文
posted @ 2013-07-06 10:33 cheng_you_know 阅读(119) 评论(0) 推荐(0) 编辑

摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1062 #include using namespace std;char* reverse(char *s,int begin,int end){char temp;while(begin =length)//最后一个单词end = length-1;reverse(s,begin,end);}}p... 阅读全文
posted @ 2013-07-06 10:13 cheng_you_know 阅读(95) 评论(0) 推荐(0) 编辑