¿Como podria meter este código en un bucle para que preguntara "Desea realizar otra operacion" y si responde si se repita todo? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

¿Como podria meter este código en un bucle para que preguntara "Desea realizar otra operacion" y si responde si se repita todo?

https://code.sololearn.com/cs2g1WfMoXuw/?ref=app

15th Aug 2020, 4:42 PM
Grabiel
Grabiel - avatar
2 Answers
0
public static void main(String[] args) { while(calc() ); } boolean calc() { boolean returnValue = true; Scanner calc=new Scanner(System.in); ... case 5: returnValue = false; return returnValue;
15th Aug 2020, 6:59 PM
zemiak
0
Make every variable name unique.
15th Aug 2020, 4:53 PM
Avinesh
Avinesh - avatar