โ Back to Loops
Question 207
ASCII Codes of A to E
ASCII Codes of A to E
For each uppercase letter fromAtoE, print its ASCII code on its own line: 65 66 67 68 69 Loop acharfrom'A'to'E'and print it with the%dformat.
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.