Saved Bookmarks
| 1. |
Rewrite the above program using while loop |
Answer» Question:Rewrite the above program using while LOOP. a=int(input("Enter first number")) b=int(input("Enter second number")) print(a*i) print("Program over") Answer:a=int(input("Enter first number")) b=int(input("Enter second number")) while a print(a) a+=3 |
|