1️⃣ Ticket Price Calculator
Problem
Take age as input and print ticket price:
Age between 5 and 18 → 50 Age between 19 and 60 → 100 2️⃣ Leap Year Checker
Problem
Take a year as input and check:
If divisible by 400 → Leap Year Else if divisible by 100 → Not a Leap Year Else if divisible by 4 → Leap Year 3️⃣ Triangle Type Checker
Problem
Take three sides of a triangle.
If all sides equal → Equilateral If exactly two sides equal → Isosceles If all sides different → Scalene 📌 Assume valid triangle input.
4️⃣ Login Validation
Problem
Take:
Rules:
Print:
5️⃣ Electricity Bill Calculator
Problem
Take units consumed.
101–200 → Bill = 5 * (units - 100) 200 → Bill = 5 * 100 + 10 * (units - 200)
Print the bill amount.
6️⃣ Grade With Pass/Fail Status
Problem
Take marks (0–100).
7️⃣ Number Nature Checker
Problem
Take a number and print all that apply:
📌 Example Output:
8️⃣ Simple ATM Withdrawal
Problem
Take:
Rules:
Withdrawal must be a multiple of 100 Balance must be sufficient Print:
9️⃣ Time-Based Greeting
Problem
Take hour (0–23).
🔟 Bonus Logic Builder: Smallest of Three
Problem
Take three numbers and print the smallest one.
📌 Constraint:
No built-in functions like min()