Computer Science, asked by ashakakileti04, 1 year ago

rewrite the following condition without using logical operator :-if(a>b||a>c)
System. out. println(a)

Answers

Answered by devsharma59
12
a>b:a>c?System.out.println(a)

devsharma59: ty
Answered by dipjyotideb13
14

if(a>b)

Sopln(a);

elseif(a>c)

Sopln(a);

Similar questions