You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
can you help me with this problem: make a program in C++ that inserts 5 integer and positive values a,b,c,d,e with the keyboard and using only the operations of increase (e.g. a=a+1), decrease (e.g. a =a-1) and comparison with 0 (e.g. a>0, a=0, a<0), determine whether the condition a*b+c>d-e is verified or not. The problem must be solved without using any other variables besides a,b,c,d,e.
The text was updated successfully, but these errors were encountered:
can you help me with this problem: make a program in C++ that inserts 5 integer and positive values a,b,c,d,e with the keyboard and using only the operations of increase (e.g. a=a+1), decrease (e.g. a =a-1) and comparison with 0 (e.g. a>0, a=0, a<0), determine whether the condition a*b+c>d-e is verified or not. The problem must be solved without using any other variables besides a,b,c,d,e.
The text was updated successfully, but these errors were encountered: