leetcode+ 数字准换位字母,进制转换
点击打开链接class Solution {public: string convertToTitle(int n) { string res=""; int temp =0; while(n>0){ temp = (n-1)%26; if(temp>=0) res += 'A'+...