Question: From C++ TO PYTHON int main () { long numUvas, numPrueba, suma; while(1) { scanf(%ld, &numUvas); if(!numUvas) { break; } suma = 0; for(numPrueba =
From C++ TO PYTHON
| int main () { | |
| long numUvas, numPrueba, suma; | |
| while(1) { | |
| scanf("%ld", &numUvas); | |
| if(!numUvas) { | |
| break; | |
| } | |
| suma = 0; | |
| for(numPrueba = 1; suma < numUvas; numPrueba++) { | |
| suma = numPrueba * (numPrueba + 1) / 2; | |
| } | |
| printf("%ld ", --numPrueba); | |
| } | |
| return 0; | |
| } |
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
