Question: from JAVA TO PYTHON import java.util.Scanner; public class p433 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int uvas; int acumulador;
from JAVA TO PYTHON
| import java.util.Scanner; | |
| public class p433 { | |
| public static void main(String[] args) { | |
| Scanner s = new Scanner(System.in); | |
| int uvas; | |
| int acumulador; | |
| uvas = s.nextInt(); | |
| while(uvas != 0) { | |
| acumulador = 0; | |
| for(int i = 1; i <= uvas; i++) { | |
| acumulador += i; | |
| if(acumulador >= uvas) { | |
| System.out.println(i); | |
| break; | |
| } | |
| } | |
| uvas = s.nextInt(); | |
| } | |
| } | |
| } |
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
