Saved Bookmarks
| 1. |
Rewrite the following into if else block int a = b == 10 ? b+2: b*2 ; |
|
Answer» if a == B: b = b+2 elif b == 10: b = b*2 Hope this is what you WANTED if not i can change and explain Mark me as BRAINIEST if it helped you |
|