c= a!=b? 50 : 100;
Rewrite using if statement
Answers
Answered by
1
if(a != b){
c = 50;
}
else{
c = 100;
}
Similar questions