python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Haskell list condition
I have started to learn Haskell yesterday, so you can consider me a complete newbie.
I wanted a list of prime numbers, so I stated:
multiples max reihe = [ x | x <- [reihe*2,reihe * 3..max], x<=...
Michèle S.
Votes: 0
Answers: 1
How do I generate a list of prime numbers up to 100 and output that to a .txt file in this Java program?
I've got an assignment that requires me to test if an integer entered by the user is prime. I've got a good base for a general test, but the assignment is combined with another problem that requires m...
James Rager
Votes: 0
Answers: 0
Program that prints prime numbers
Program that prints the 2 largest prime numbers in a given range from the user using recursion.
I want to get the 2 largest prime numbers in a range that is given by the user, but somehow it just prin...
User617290653251457439
Votes: 0
Answers: 2
Print prime numbers within an interval
This code is running for the 1-10 interval but for interval 20-30 it is writing 21 and 27 and I am unable to understand what's wrong in the code. I don't want to know other code; I want to know what'...
Himanshu Sharma
Votes: 0
Answers: 3