首页 > 代码库 > Excel Sheet Column Title
Excel Sheet Column Title
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
1 public class Solution { 2 public String convertToTitle(int n) { 3 String result=""; 4 while(n!=0){ 5 String a=""; 6 int temp=n%26; 7 if(temp==0){ 8 a=String.valueOf(‘Z‘); 9 n=n-26;10 }11 else{12 a=String.valueOf((char)(temp-1+‘A‘));13 }14 result=a+result;15 n=n/26;16 17 }18 return result;19 }20 }
Excel Sheet Column Title
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。