Computer Science, asked by AreetraSircar, 1 month ago

Rewite using logical operator
If (a>b || a>c)
System.out.println(a);​

Answers

Answered by SreeSathya
0

Answer:

ᴄʜᴀɴɢᴇ ᴛᴏ ɪɴᴅɪʀᴇᴄᴛ ꜱᴘᴇᴇᴄʜ :-

"Congratulations! you have been selected for the final match" said my coach to me.

◕ Don't spam

◕ Correct and quality answers are expected.

Answered by agentdevprobs
1
void main ()
{
clrscr();
int a,b,c;
printf(“Enter the 3 values:”);
scanf(“%d%d%d”,&a&b&c);
if(a>b)
{
printf(“\n%d is greater than %d”,a,b);
else if(a>c)
printf(“\n%d is greatest number”,&a);
else
printf(“\n%d is the greatest number”,&c);
}
getch();
}
sorry gtg i did 60% bye

Similar questions
Math, 9 months ago