+ 1
How to find largest number without any operator
It means without use any conditional operator we can find largest number among two number
6 Respostas
+ 2
Or you can also do this....
https://code.sololearn.com/c3bGH8GXveHY/?ref=app
+ 1
Simple, just subtract them if a<b then a-b will be positive and if a>b then a-b will be negative.🙂🙃
+ 1
Here you use relational operator no any operator are use then solve this problem
+ 1
Only arithmetic operator are allowed to use
+ 1
Aakash Bilwal I have just used subtraction operator. Relational operators are used just for explaination purposes
0
How do you find largest number without any operator running inside your mind? Apply your answers logic to computer.