标签:
Dr.Kong设计了一个聪明的机器人卡多,卡多会对电子表格中的单元格坐标快速计算出来。单元格的行坐标是由数字编号的数字序号,而列坐标使用字母序号。观察字母序号,发现第1列到第26列的字母序号分别为A,B,…,Z,接着,第27列序号为AA,第28列为AB,依此类推。
若给Dr.Kong的机器人卡多一个数字序号(比如32),它能很快算出等价的字母序号(即AF),若给机器人一个字母序号(比如AA)),它也能很快算出等价的数字序号(27),你能不能与卡多比试比试,看谁能算得更快更准确。
3 27 G AA
AA 7 27
使用VS C++编译器,编译器会直接调用C++的pow函数,而不会调用C的pow函数。C++版的pow没有int型的参数,只能先转换成double类型,而网站上的编译器好像使用的是GCC,double到int数据类型的转换会提示出错,纠结了半小时。。。。
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> int charToNum(char* str) { int num = 0; int len = strlen(str); int i = 0; while(i < len) { num += (str[i] - ‘A‘ + 1) * pow(26, (len - i - 1)); i++; } return num; } void numToChar(int num, char* str) { int i = 0; while(num > 0) { char c = ‘A‘ + num % 26 - 1; int a = num /= 26; if(c == ‘A‘-1) { str[i] = ‘Z‘; num = a-1; } else { str[i] = c; num = a; } i++; } str[i] = ‘\0‘; num = i-1; i = 0; while(num > i) { char temp = str[num]; str[num] = str[i]; str[i] = temp; num--; i++; } } int main() { int num = 0; scanf("%d", &num); while(num--) { char test[10]; scanf("%s", test); if(test[0] <= ‘9‘ && test[0] > ‘0‘) { int testNum = atoi(test); char testStr[10]; numToChar(testNum, testStr); printf("%s\n", testStr); } else printf("%d\n", charToNum(test)); } return 0; }
标签:
原文地址:http://www.cnblogs.com/sdlwlxf/p/4614734.html