Write the conditional statements for the following decision making
situation:
Answers
Answered by
1
Explanation:
int main() {
int x = 45;
if( x > 95) {
printf( "Student is brilliant\n");
}
if( x < 30) {
printf( "Student is poor\n");
}
if( x < 95 && x > 30 ) {
printf( "Student is average\n");
}
}
hope helpful to you ❤️ please mark has brilliant please ❤️
Similar questions