CJCoding With Joseph

ASCII Codes of A to E

For each uppercase letter from A to E, print its ASCII code on its own line:

65
66
67
68
69

Loop a char from 'A' to 'E' and print it with the %d format.

Expected Output:

65
66
67
68
69
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.