Practice Questions: C++ Input / Output (Without Loops and Conditions)
1. Write a program to input a student's name and display it.
2. Write a program to input two integers and display them on separate lines.
3. Write a program to input a float value and print it with 2 decimal places.
4. Write a program to input your city name and university name and display a formatted
message.
5. Write a program to input a character and display its ASCII value.
6. Input two numbers and display their sum, difference, product, and division.
7. Write a program to calculate the square of a number.
8. Write a program to calculate the cube of a number.
9. Write a program to calculate the area of a rectangle (input length and width).
10. Write a program to calculate the perimeter of a rectangle.
11. Input radius and calculate area of a circle.
12. Input temperature in Celsius and convert to Fahrenheit.
13. Input principal, rate, and time to calculate Simple Interest.
14. Input base and height to calculate area of triangle.
15. Input marks of 3 subjects and calculate total and average.
16. Input employee name and salary and display a formatted payslip.
17. Input your date of birth (day, month, year) and display in formatted form.
18. Input three numbers and display their sum.
19. Input two float numbers and display their multiplication.
20. Input price and quantity and calculate total bill.
21. Display a formatted ID card using user input.
22. Display a formatted fee receipt.
23. Input first name and last name separately and display full name.
24. Input roll number and GPA and display in tabular format.
25. Create a formatted marks sheet for 4 subjects.
26. Input integer and display it as float using type casting.
27. Input float and display integer part only.
28. Input a character and display next character.
29. Input an ASCII value and display corresponding character.
30. Input two integers and display result of division as float.
31. Mini calculator (only arithmetic operations).
32. Electricity bill calculator (basic formula, no slabs).
33. Currency converter (PKR to USD using fixed rate).
34. BMI calculator.
35. Percentage calculator.