Computer Science, asked by s6173180, 4 months ago

Rewrite the following statement using if else:
int max=215, min=323;
String str= (max>min) ? "Max is greater than Min": "Min is Greater than Max"
kindly plz give answer fast
mark as brainlist ​

Answers

Answered by mishraabhi8924
1

Explanation:

int max=215, min=323;

if(max>min)

{

printf("Max is greater than min");

}

else{

printf("Min is greater than max");

}

Similar questions