Chinaunix首页 | 论坛 | 博客
  • 博客访问: 266822
  • 博文数量: 170
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1709
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-06 18:01
文章分类

全部博文(170)

文章存档

2016年(11)

2015年(130)

2014年(29)

分类: Java

2015-03-22 16:50:28



import org.omg.CORBA.ARG_IN;


//Given a positive integer, return its corresponding column title as appear in an Excel sheet.
//
//For example:
//
//    1 -> A
//    2 -> B
//    3 -> C
//    ...
//    26 -> Z
//    27 -> AA
//    28 -> AB 
public class ExcelSheet {
public static void main(String []args){
System.out.print(convertToTitle(2));
}
public static String convertToTitle(int n) {
  String string="";
       char c;
       int mod;
           while(n>0){
              mod=n%26;
              n=n/26;
              if(mod==0){
                  mod=26;
                  n--;
              }
              c=(char) (64+mod);
           
              string=c+string;
           }
          
       return string;
   }
}


阅读(322) | 评论(0) | 转发(0) |
0

上一篇:numDecodings

下一篇:FindMin

给主人留下些什么吧!~~