LCOJ - Excel Sheet Column Title

来源:互联网 发布:真人cs玩法和技巧知乎 编辑:程序博客网 时间:2024/06/03 16:56

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 

 

// 进制转换class Solution {public:string convertToTitle(int n) {string res = "";while (n) {res += 'A' + (--n % 26);n /= 26;}reverse(res.begin(), res.end());return res;}};


 

 

0 0
原创粉丝点击