给定一个正整数,返回它在 Excel 表中相对应的列名称。
例如,
1 -> A 2 -> B 3 -> C ... 26 -> Z 27 -> AA 28 -> AB ...
示例 1:
输入: 1 输出: "A"
示例 2:
输入: 28 输出: "AB"
示例 3:
输入: 701 输出: "ZY"
class Solution {
public:
string convertToTitle(int n) {
string s = "";
for(n;n>0;n=n/26)
{
n--;//将数转化为下标
int tem=n%26;
s=char(tem+'A')+s;
}
/*
while (n != 0) {
n--;
int c = n % 26;
s=(char) (c + 'A')+s;
n = n / 26;
}
*/
return s;
}
};