Computer Science, asked by ankit741dgur, 5 months ago


Write the conditional statements for the following decision making
situation:​

Answers

Answered by Anonymous
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