Summary: Hi everyone, I should find prime numbers! its so easy! but the point is how the program will looks when you cannot use arithmetic operators!! (except...
Summary: To figure out the prime number, you're going to have to go *waaay* back to prealgebra (maybe not that far, depending on how old you are) and review a ...
Summary: I am supposed to write a function in MIPS that determines if a number is prime. The function should pass the number to be judged as an argument (throu...
Summary: hi people i am having a great problem in vb.net while trying to make a program about prime numbers. is there is any 1 who will provide me the code. th...
Summary: Hi Is there any sophisticated way of randomizing a number (possibly with a seed number) in Qbasic so that the same numbers don't appear every time? ...
Summary: Have to hate those spots of bother :). You should be able to modify the following code to suit your needs. The code is assuming two text boxes and a ...
Summary: Hi guys, Im having a spot of trouble rounding numbers in Vb. Can anyone tell me how to round numbers down? eg. I have a number such as 109.62 but thi...
Summary: Am i missing something here: #include "primes.h" /*how to linkto main.c*/ int is_prime(int n) { int k; int limit; if (n == 2) return 1; if (...
Summary: Hi I have a little bit of difficulty generating random numbers in assembly. However, the problem here is that, I want to generate random numbers in th...
Summary: 1 - funcion primes to print prime #'s of an interger, num, greater than 1 Having some issues plz help ---------------- #include using std:cout; usin...
Summary: Hi Guys, I need to write a batch file that reads from a .txt file a serie of variable and their values. The fact is that these numbers are stored in t...
Summary: Hi can any one help me with this code to "Write a program to determine if the sequence of numbers 11,101,1001,10001…. are all prime numbers up to a...
Summary: It would appear that the objective of the assignment is to generate a list of prime numbers beginning with succesive prime numbers in each new list. ...
Summary: //There is a program that im working on that needs to have multiple subprograms; I need as much //help as possible. //*Somehow they need to be direct...
Summary: I don't know 9/10 of C++, and the other 1/10 is all vague (thank the horrid professor). This isn't for a course, I'm doing this on my own. What I'm...
Summary: Iam working on RSA algorithm. I need to understand how one can work with large numbers as long as 100 digits , large prime generations. And then we ne...
Summary: i have a problem using java to create a program to determine if it is a prime or not. And also a palindrome code. Can you help me with this? ran ...
Summary: Hi M2 There probably are thousands of possible solutions, especially if the number extends into 3 or 4 digits. In the aforementioned quiz, the contes...
Summary: Jack- You don't need to know either for your particular application, but sooner or later you will HAVE to learn arrays...It won't take you very long. ...
Summary: I'm looking for a way to large random numbers beyond the limit of rand(). I have an idea on how I can do this but was wondering if C++ by chance had a...
Summary: Hi, i'm trying to learn what recursion numbers are.. i searching the msdn but i couldn't figure out much. Can somebody explain it to me ? in an easy w...
Summary: hello i was wondering how you would create a value returning function that would return the fractional part of a given number... for example, if a use...
Summary: Hi, well, in C we can initialize an int this way: int dec = 10; int hex = 0xA; but how to do this using binary number(representation), eg. int bin =...