1. If A is greater than C the C is greater than D.
2. A, B and C store values in strictly ascending values
3. A, B and C each store different values.
These are the three problems that I am stuck on. Can please have some one help me.
Copyright © 2024 Q2A.ES - All rights reserved.
Answers & Comments
Verified answer
1.
if(A>C) C=D+1;
2.
while(A<B && B<C){ code goes in here}
3.
while(A!=B && B!=C && C!=A) {code goes in here}