Java unknown cause for infinite loop

Advertisements I have a code result that I cannot explain in Java 11 code that sends an email. I am using the javax mail package: import javax.mail.Message; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; Here is the code: Properties props = System.getProperties(); props.put("mail.smtp.host", smtpHost); Session session = Session.getInstance(props); int nMaxTries = 5; int nTries… Read More Java unknown cause for infinite loop

Infinite loop testing

Advertisements How could I test an infinite loop? For example: func.py def func(): while True: char = input().lower() if char == ‘q’: break elif char.isalpha(): print("It’s not a number") if int(char) == #some_number break else: print(‘Try again’) test.py def test_func(): ??? Is there any solution for testing this? >Solution : You can use unittest to… Read More Infinite loop testing

Infinite-loop problems

Advertisements I was doing some challenges from Coding.Dojo algorithm challenges and I’m stuck at "The Final Countdown" challenge. So this is what I was asked to do: Give 4 parameters (param1, param2, param3, param4),print the multiples of param1, starting at param2 and extending to param3.If a multiple is equal to param4 then skip-don’t print that… Read More Infinite-loop problems

Can i have a infinite loop without crashing it?

Advertisements I want to make this code infinite loop (i placed it in loop.js) without crashing the browser with a really short delay player.style.right = (Number(player.style.right.split("px")[0]) – dx) + "px"; player.style.top = (Number(player.style.right.split("px")[0]) – dy) + "px"; if (player.style.right.split("px")[0] > 315) { player.style.right = 315 + "px"; } if (player.style.right.split("px")[0] < -30) { player.style.right =… Read More Can i have a infinite loop without crashing it?

Endless loop in c++

Advertisements I am currently learning c++ and I have come to a strange behavior at my code: #include<iostream> using namespace std; int main(){ int input; int counter = 0; while (input != 0 && counter <= 100){ cout << "———–\n"; cout << "0 = Get Out!\nEverything else will be displayed!\nPlease enter a number: "; cin… Read More Endless loop in c++