CJCoding With Joseph

Discount Eligibility

Read a purchase total (an integer) with scanf. If the total is greater than 100, print exactly:

Discount applied

Otherwise print exactly:

No discount

No trailing newline. For input 150 the output is Discount applied; for input 80 the output is No discount.

Expected Output:

Discount applied
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
150\n
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.