V.
Write 'if' statements as directed:
1.
Check whether both A and B is greater than 50 or not.
Answers
Answered by
5
Answer:
I am giving the algorithm in java 4.0.2.0
Explanation:
see if is used to compare between two values but when we have two compare more than two values then please use logical and.
if( A>50 @@ B>50)
this means if A= 60 and B = 70 the above condition will return true in Boolean. else it will give a false. @ this means and operator.
Answered by
2
Answer:
hey bro it is
Explanation:
if(a>50)$$(b>50)
Similar questions