CJCoding With Joseph

Can Rent a Car

A rental company requires drivers to be at least 25 years old. Read an integer age. If age is 25 or more, print Can rent; otherwise print Too young.

For example, given the input 30, the program prints:

Can rent

Expected Output:

Can rent
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
30
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.