上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
该文被密码保护。 阅读全文
posted @ 2014-08-08 20:23 夏子藤 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ int T; scanf("%d",&T); getchar(); while(T--) { char str[45],b[45]; int m,k,i; k=0; //scanf("%s",str); gets(str); m=strle... 阅读全文
posted @ 2014-08-08 20:05 夏子藤 阅读(153) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int T; scanf("%d",&T); while(T--) { int sum; long long a,b; scanf("%lld %lld",&a,&b); if(a==0||b==0) { sum=0; } else { sum=(a%9)... 阅读全文
posted @ 2014-08-08 20:04 夏子藤 阅读(103) 评论(0) 推荐(0) 编辑
摘要: #include #include #include int main(){ int T; scanf("%d",&T); while(T--) { int max=0,k,l,i; char a[1020]; int b[27]={0}; scanf("%s",a); l=strlen(a); f... 阅读全文
posted @ 2014-08-06 20:30 夏子藤 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Android中RelativeLayout各个属性的含义 androidlayout android:layout_above="@id/xxx" --将控件置于给定ID控件之上 android:layout_below="@id/xxx" --将控件置于给定ID控件之下 android:layo... 阅读全文
posted @ 2014-08-06 19:54 夏子藤 阅读(529) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2014-08-06 19:51 夏子藤 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int N; //int c[100]; scanf("%d",&N); while(N--) { int c[100]; int n,b,a,i,j,t; b=0; scanf("%d",&n); for(i=0;ib) { b=a; t=c[i]; }... 阅读全文
posted @ 2014-08-06 08:54 夏子藤 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 方法一:#includeint main(){char a[12];int i;//for(i=0;iint main(){ char a[]="22233344455566677778889999"; char b[12]; int T; scanf("%d",&T); while(T--) { ... 阅读全文
posted @ 2014-08-06 08:53 夏子藤 阅读(328) 评论(0) 推荐(0) 编辑
摘要: Android的AlertDialog详解AlertDialog的构造方法全部是Protected的,所以不能直接通过new一个AlertDialog来创建出一个AlertDialog。 要创建一个AlertDialog,就要用到AlertDialog.Builder中的create()方法。 ... 阅读全文
posted @ 2014-08-05 09:27 夏子藤 阅读(566) 评论(0) 推荐(0) 编辑
摘要: #include int main(){ int T,a[100]; scanf("%d",&T); while(T--) { int n,i,j,sum,t; scanf("%d",&n); for(i=0;ia[i+1]) {t=a[i];a[i]=a[i+1];a[i+1]=t;} } } s... 阅读全文
posted @ 2014-08-05 09:15 夏子藤 阅读(122) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页