python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Python Code not executing next line of code in a while Statement
I'm trying to build a calculator, and when a result is given it's not entering the next "if" statement
Here is my code:
How can I make sure after I get an answer it goes to the next line of...
cdvooo
Votes: 0
Answers: 1
How can I make a function that will called from inside a loop and that will indicate whether to continue?
def x():
# Go through series of checks. Then in one of the conditional if statement.
if y > x:
return continue
while True:
# Bunch of class attribute updates and checks...
Erelbrin
Votes: 0
Answers: 2
Java - Calculate mean of numbers that are lower than 60 while disregarding numbers greater than or equal to 60
I am trying to calculate the mean of numbers (that are less than 60) which the user inputs. But I can't get my program to disregard any numbers greater or equal to 60. Have I used the "continue&q...
World Class
Votes: 0
Answers: 1
why this program printing nothing?
Why this program print nothing.anyone who can explain reasion behind this
#include <stdio.h>
int main(){
int i = 0;
for(;;){
if(i==10)
continue;
printf("%d ...
Aadil Mughal
Votes: 0
Answers: 1