User profile: hockeynl

User info
User name:hockeynl
History
Joined:
Number of posts:4
Latest posts:

Matrix Checking Rows
I have to create a program that allows a user to fill in a (partial) Latin Square of order 4. You ca...

What to do next for Latin Square Program
I have to create a program that allows a user to fill in a (partial) Latin Square of order 4. You ca...

Prime Factors of a Number
[code]bool isPrime (int n) { if (n < 2){ return false; } for (int i=2; i<=sqrt(n); i++){ ...

Prime Factors of a Number
I have to create a program where I need to find the prime factors of a number and express it using e...