Q15 A certain grade of steel is graded according to the following conditions: (i) Hardness must be greater than 50 (ii) Carbon content must be less than 0.7 (iii) Tensile strength must be greater than 5600 The grades are as follows: Grade is 10 if all three conditions are met Grade is 9 if conditions (i) and (ii) are met Grade is 8 if conditions (ii) and (iii) are met Grade is 7 if conditions (i) and (iii) are met Grade is 6 if and only one conditions is met Grade is 5 is none of the conditions are met Write a program, which will require the user to give value of hardness, carbon content and tensile strength of the steel under consideration and output the grade of the steel.
Program: 83
A certain grade of steel is graded according to the following conditions:
- Hardness must be greater than 50
- Carbon content must be less than 0.7
- Tensile strength must be greater than 5600
The grades are as follows:
Grade is 10 if all three conditions are met
Grade is 9 if conditions (i) and (ii) are met
Grade is 8 if conditions (ii) and (iii) are met
Grade is 7 if conditions (i) and (iii) are met
Grade is 6 if and only one conditions is met
Grade is 5 is none of the conditions are met
Write a c program, which will require the user to give value of hardness, carbon content and tensile strength of the steel under consideration and output the grade of the steel.
Output:
Enter the value of Hardness: 60 Enter the value of Carbon Content: 0.6 Enter the value of Tensile Strength: 5800 The grade of steel is: 10