User profile: Roastern

User info
User name:Roastern
Old user name:noNotThat
History
Joined:
Number of posts:27
Latest posts:

Prime Numbers
You're calling primenum.close() inside the for loop in main. Because of this, it is writing one numb...

Tic Tac Toe program, if statement to change 2d array contents
On line 9, in your if statement, you need to change A to 'A' for the right comparison. Same thing fo...

Encapsulation/Incorporation
Take this example of a class which stores the birthday for a person: [code]class Birthday { public...

How to print (display to screen) an array of struct
You're getting there. In the struct stock, value is undefined until the function setValues() is ran....

Returning number of characters without using strlen
Ok, I see the problem. The for loop will continue, regardless of whether or not the condition in th...