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
26进制!!
public class Solution {
public String convertToTitle(int n) {
StringBuffer sb=new StringBuffer();
while(n>0){
sb.append((char)((n-1)%26+'A'));
n=(n-1)/26;
}
return sb.reverse().toString();
}
}
本文介绍了一种将正整数转换为Excel工作表中对应列标题的方法,采用26进制进行转换,例如1对应A,26对应Z,27对应AA等,并提供了一个Java实现示例。
1908

被折叠的 条评论
为什么被折叠?



