CJCoding With Joseph

Shipping Cost by Weight

Read a package weight in kilograms (an integer). Print the shipping cost in this exact format 'Cost: X' where X is:
- 5 if weight is 1 or less
- 10 if weight is 2 to 5
- 20 if weight is more than 5

Expected Output:

Cost: 5
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
1\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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.