Computer Science, asked by Kalai8023, 10 months ago

Given a positive integer, return its corresponding column title as appear in an excel sheet.

Answers

Answered by Anonymous
0

Answer:

MS Excel columns has a pattern like A, B, C, … ,Z, AA, AB, AC,…. ,AZ, BA, BB, … ZZ, AAA, AAB ….. etc. In other words, column 1 is named as “A”, column 2 as “B”, column 27 as “AA”.

Given a column number, find its corresponding Excel column name. Following are more examples.

Input Output

26 Z

51 AY

52 AZ

80 CB

676 YZ

702 ZZ

705 AAC

..

Answered by Anonymous
0

Explanation:

Given a positive number, convert the number into corresponding excel column name.The main trick in the problem lies in the handling .

Similar questions