摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2106简单的进制转化View Code 1 #include<stdio.h> 2 int main() 3 { char s[100]; 4 int sum,n,i,a,b,t,m; 5 while(scanf("%d",&n)!=EOF) 6 { 7 m=0; 8 while(n--) 9 {10 sum=0;11 scanf("%s",s);12 f... 阅读全文
posted @ 2013-04-09 22:53 执着追求的IT小小鸟 阅读(128) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2097解法同1197,输出有些不一样而已View Code 1 #include <stdio.h> 2 int main() 3 { 4 int i, n, sum10, sum12, sum16,a[10000]; 5 for (i=1000; i<10000; i++){ 6 n = i; 7 sum10 = 0; 8 while (n){ 9 sum10 += n%10;10 n /= 1... 阅读全文
posted @ 2013-04-09 22:42 执着追求的IT小小鸟 阅读(228) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1266View Code 1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 int n,i,j; 6 char s[10000]; 7 scanf("%d",&n); 8 gets(s); 9 while(n--)10 {11 gets(s);12 i=strlen(s)-1;13 while(s[i]=='0')14 i--;1... 阅读全文
posted @ 2013-04-09 20:15 执着追求的IT小小鸟 阅读(113) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1412把两个集合合并为一个,然后进行排序,最后把不重复的数输出View Code 1 #include<stdio.h> 2 #include<stdlib.h> 3 int cmp(const void *a,const void *b) 4 { 5 return *(int *)a-*(int *)b; 6 } 7 int main() 8 { 9 int n,m,s[100000],i;10 while(scanf("%d%d",&n,&m)! 阅读全文
posted @ 2013-04-09 19:01 执着追求的IT小小鸟 阅读(142) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1058见注释View Code 1 #include<stdio.h>//解法同uva里的136题,丑数,要先打表,然后再输出 2 int min(int a,int b) 3 { 4 if(a>=b) 5 return b; 6 else return a; 7 } 8 int main() 9 {10 int a[5843],b[4];11 int i,j,temp,a1,a2,a3,n;12 a[1]=1; 13 for(i=1;i<=5842;)14 {15 ... 阅读全文
posted @ 2013-04-09 12:19 执着追求的IT小小鸟 阅读(232) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2019边输入,边判断,边插入,在插入后要做个标记,避免重复插入View Code 1 #include<stdio.h> 2 int main() 3 { 4 int x,n,a[10000],i,t,flag; 5 while(scanf("%d%d",&n,&x)&&(n||x)) 6 { 7 flag=0; 8 scanf("%d",&a[0]); 9 if(x<a[0])10 {11 t=x... 阅读全文
posted @ 2013-04-09 12:18 执着追求的IT小小鸟 阅读(207) 评论(0) 推荐(0) 编辑