It is high-school test problem my kid got yesterday
I jumped in - but after getting something working... I Googled and it happened that I solved quite anoter task (Doh).
So here is it (Google-translated text, original is in Russian)
Let's call a nontrivial divisor of a natural number its divisor, which is not equal to one and the number itself. For example, the number 6 has two nontrivial divisors: 2 and 3. Find all natural numbers belonging to the segment [123456789; 223456789] and having exactly three nontrivial divisors. For each found number, write down its largest nontrivial divisor in the answer. Arrange the answers in ascending order.
Could you solve it without Google?
I'm not really certain what I'm shooting for here
Is that not a JustBasic user? What is the difference between JB and LB -- where is the line drawn between liberty and justice? Which one would you recommend to a beginner? In an ideal world, would you prefer that everyone here used JB instead of QB64 instead, the same as I would but for FB?
@SMcNeill
I too was confused about primes, we are always talking about prime factors and factoring numbers with primes.
Just concentrate on and count any number that divides evenly into the number we are checking.
2 would be smallest potential divisor and n/2 would be the largest potential divisor.
For any number n you have n/2 - 1 candidates for checking, a little math or other discoveries could (and did for me) speed up the processing tremendously! If you know a number is prime you know it won't have any divisors, but does that help much? Eh, maybe... ;-))
Just concentrate on and count any number (>1 and <N) that divides evenly into the number we are checking.
2 would be smallest potential divisor and n/2 would be the largest potential divisor.
To give away the farm: there is only one kind of number that has exactly 3 divisors and you might use code similar to what I have above to search for them if you find the first 3 you should see the light :)
The light is dawning :)
Now see the awesome mass of integers whose 4th power are between 123456789 and 223456789 ha, ha!
Then finally find the ones that are primes ^ 4, in the blink of the eye!
As a programmer, the hardest code to write is for a problem you don't comprehend.
Here is the code I started testing for the Challenge:Code: QB64: [Select]
WTH? If this does 10 integers a second 100,000,000 integers will take
10,000,000 secs
=166,666 mins
=2777 hours
=115 days Yikes! what's going on?
OK just try the code starting at the start and see what's going on:Code: QB64: [Select]
OH! We just need the first 4 powers of prime numbers !!!
because the divisors of i^4 are i, i^2 and i^3 easy!
OK so which integers to the 4th power lay between 123456789 and 223456789?
I ran this code:Code: QB64: [Select]'OK all i need are primes between 106 and 122!!!
Wow did that simplify our search for 3 divisors between 123456789 and 223456789
Final code:Code: QB64: [Select]
For each found number, write down its largest nontrivial divisor in the answer. Arrange the answers in ascending order.
But I still have the question of: "What's the point of sorting, if that's the solution?"
Quote
For each found number, write down its largest nontrivial divisor in the answer. Arrange the answers in ascending order.
I found this at Liberty Basic Forum (Feb 8) and so far nobody there has figured it out.
I just did but let's see if someone else can here at this forum:
tsh73
Who is the best programmer there? tsh, Rod, or technotitlick?
wow Steve, you also program in Liberty BASIC?