dont inline functions just get thrown into the code everyplace they are used? That would be like typing the same piece of code 15 times in your program...
I continued to try the Project method and I eventually got it to work. I was previously still compiling the files individualy within the project. Then i got it to work by building the entire project....
Hi, I am completly new to Classes in C++. I have been trying to create a simple class and have had all sorts of problems. I am following directions from my textbook and the code looks correct, I have...
Hi, I am making a TicTacToe game. Right now I am trying to design the computer's moves. I want the computer player to check for possible wins, then check for possible blocks and otherwise just make a...
Hey, I have been looking at internships/jobs in the CPS field, mainly software development and I have noticed that many companies require that you submit some sort of "self started" project. I would...
Look for internships that require little or no experience, there are some out there. This will get u enough expierence to move onto something bigger. That is what I will be doing once I finish my...
I once had this virus/problem on my laptop that kept opening my cd tray and no matter what I did i could not stop it. I dont know how it happened or how it was programmed tho.
Well, im not trying to make a game of craps for other people to play nor am i trying to test how well my craps game works. It is a simple simulation of a craps game that keeps statistics on rolls /...
I have this program here that simulates a Craps game and collects statistics about the games. My current design reflects several things i was trying to do.
1. Keeping the "Gameplay" and "Stat...
Your right, its not a huge problem i just found it very ugly. Because I would end up passing the arrays through 2 functions.
From main() --> play() --> shootersPoint();
Yes i thought about using a struct to group the statistical data but that is basically the same as a class. We could, use classes for this project but we shouldnt. Because the chapter being covered...