#include <iostream>using namespace std; int main() { // your code goes here for (char letter = '1'; letter!='Z' + 1; letter++ ){ int number = letter; cout << letter << '\t'; cout << number; cout << "\n"; } return 0;}
Standard input is empty
1 49 2 50 3 51 4 52 5 53 6 54 7 55 8 56 9 57 : 58 ; 59 < 60 = 61 > 62 ? 63 @ 64 A 65 B 66 C 67 D 68 E 69 F 70 G 71 H 72 I 73 J 74 K 75 L 76 M 77 N 78 O 79 P 80 Q 81 R 82 S 83 T 84 U 85 V 86 W 87 X 88 Y 89 Z 90
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!