会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
android开发实例
Uva 490 Rotating Sentences
#include<stdio.h> #include<string.h> int main() { char ch[110][110]; int i=0,j,k; int max; while(gets(ch[i])!=NULL) { if(i==0) max = strlen(ch[i]); else if(max<strlen(ch[i])) max = strlen(ch[i]); i++; } for(j=0;j<max; j++) { for(k=i-1; k>=0;k--) { if(j<strlen(ch[k])) printf("%c",ch[k][j]); else if(k!=0) printf(" "); } printf("\n"); } return 0; }
posted on
2012-03-29 16:03
android开发实例
阅读(
143
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
新随笔
联系
订阅
管理
公告