List of Problem in Conditional Statement
List of Problem in Conditional Statement
6. Write a C program to read the value of an integer m and display the value
of n is 1 when m is larger than 0, 0 when m is 0 and -1 when m is less than
0. Go to the editor
Test Data : -5
Expected Output :
The value of n = -1
Click me to see the solution
Test Data :
Input the marks obtained in Physics :65
Input the marks obtained in Chemistry :51
Input the marks obtained in Mathematics :72
Expected Output :
The candidate is eligible for admission.
Click me to see the solution
11. Write a C program to calculate the root of a Quadratic Equation. Go to the
editor
Test Data : 1 5 7
Expected Output :
Root are imaginary;
No solution.
Click me to see the solution
12. Write a C program to read roll no, name and marks of three subjects and
calculate the total, percentage and division. Go to the editor
Test Data :
Input the Roll Number of the student :784
Input the Name of the Student :James
Input the marks of Physics, Chemistry and Computer Application : 70 80 90
Expected Output :
Roll No : 784
Name of Student : James
Marks in Physics : 70
Marks in Chemistry : 80
Marks in Computer Application : 90
Total Marks = 240
Percentage = 80.00
Division = First
Click me to see the solution
15. Write a C program to check whether a triangle can be formed by the given
value for the angles. Go to the editor
Test Data :
40 55 65
Expected Output :
The triangle is not valid.
Click me to see the solution
Unit Charge/unit
If bill exceeds Rs. 400 then a surcharge of 15% will be charged and the
minimum bill should be of Rs. 100/-
Test Data :
1001
James
800
Expected Output :
Customer IDNO :1001
Customer Name :James
unit Consumed :800
Amount Charges @Rs. 2.00 per unit : 1600.00
Surchage Amount : 240.00
Net Amount Paid By the Customer : 1840.00
Grade Description
E Excellent
V Very Good
G Good
A Average
F Fail
Test Data :
Input the grade :A
Expected Output :
You have chosen : Average
Click me to see the solution
21. Write a program in C to read any day number in integer and display day
name in the word. Go to the editor
Test Data :
4
Expected Output :
Thursday
Click me to see the solution
22. Write a program in C to read any digit, display in the word. Go to the editor
Test Data :
4
Expected Output :
Four
Click me to see the solution
23. Write a program in C to read any Month Number in integer and display
Month name in the word. Go to the editor
Test Data :
4
Expected Output :
April
Click me to see the solution
24. Write a program in C to read any Month Number in integer and display the
number of days for this month. Go to the editor
Test Data :
7
Expected Output :
Month have 31 days
Click me to see the solution