
please wait
by FrankRafa
Questions about connect 4 board
|
Hi, So I am working on this connect four board stuff to test myself of some basic programming... And I got stuck on the idea of how to display the board(Note... |
Mar 31, 2015 at 6:29am
[8 replies] Last: If lastposition is supposed to record the users' X and O on the boar... (by fg109)
|
by pacman169
EOF
|
Hello, I need to verify that the expression getchar() ! = EOF is 0 or 1. My current code: #include <stdio.h> int main (int argc, char *argv ) ... |
Mar 31, 2015 at 6:21am
[4 replies] Last: You'll want to print a newline at the end of the printing within the l... (by Zhuge)
|
by sirrunrun
urgent help
|
solved |
Mar 31, 2015 at 6:20am
[1 reply] : help please (by sirrunrun)
|
by aarjm123
minesweeper/GetPixel()
|
Hi, I'm trying to write a program that plays a minesweeper game by itself. I think I can write all of the code just fine, but I don't know how to have the pr... |
Mar 31, 2015 at 5:20am
[2 replies] Last: Microsoft Visual Studio 2013? (by aarjm123)
|
by Sev
Program immediately closes and expects a ";"
|
The program I wrote immediately closes //Game Over // My first program #include <iostream> int main() { std::cout << "Game Over!" << std::endl ... |
Mar 31, 2015 at 1:15am
[2 replies] Last: Thank you (by Sev)
|
by Sev
Program wont start "identifier 'end1' is undefined"
|
My program wont start up because of "end1" (Entirely new to C++ so forgive my simple mistakes) Program: //Game Over // My first program #include <iostream> ... |
Mar 31, 2015 at 1:08am
[4 replies] Last: Thank you very much (by Sev)
|
Battleship Game with Classes Help |
delete |
Mar 30, 2015 at 10:44pm
[no replies]
|
by steezedq
Determining if numbers are prime
|
I feel like I'm close to solving this, but I don't know what's wrong. I have to create a program that reads in 5 integers and determine if each is prime, then p... |
Mar 30, 2015 at 10:13pm
[7 replies] Last: good to know, no problem x'D (by Gamer2015)
|
by as4mvp
Arrays with Random Numbers
|
Write a program in which you create an array with 250 elements. Populate the array with random real numbers between 1 and 100. Using the statistics library, cal... |
Mar 30, 2015 at 10:08pm
[1 reply] : Using the statistics library What library does that refer to? wi... (by keskiverto)
|
by Xatasha
Manipulating strings from a file
|
Hi all, second to last assignment for the semester! Thanks guys for all your help so far. This week I'm struggling to rewrite my last program so it does all the... |
Mar 30, 2015 at 9:59pm
[1 reply] : Depending on how you're saving your data (how does it look in the save... (by fg109)
|
by joecooler
call parent function from overriding function in child
|
I have a class (child) that is inheriting from another class (parent). I'd like to create a function in the child class w/the same name and arguments as a func... |
Mar 30, 2015 at 9:39pm
[6 replies] Last: so i think my code should look like this: class parent { public: in... (by joecooler)
|
by PapaSmurf
Pointers to functions and vectors within vectors
|
Hi, I have created a class called Rows which has the following in it: #pragma once #include "Berths.h" #include "Ship.h" class Rows { public: Rows... |
Mar 30, 2015 at 9:31pm
[7 replies] Last: Then your class hierarchy should look like this: class Ship { //... (by fg109)
|
Problem with Fibonacci's sequence and Binary search |
So, I have a problem with the source code down there. As you can see, the program is used to search the Fibonacci sequence with the Binary search method. The pr... |
Mar 30, 2015 at 9:26pm
[4 replies] Last: @windmilltaker Well, I did some more thinking and realized that wha... (by fg109)
|
by Comicalizard
Difficulty with ending loop/while statement
|
Hey guys, I am not sure why the loop will not close. Any ideas?? #include <cstdlib> #include <iostream> using namespace std; int main() { //define variables... |
Mar 30, 2015 at 8:24pm
[2 replies] Last: I hate overlooking the small things... Thanks!! (by Comicalizard)
|
by thebossman
Files problem
|
I am trying to get this program to open the file and output the info onto the screen. I created a file on visual studio and another one on my desktop but both w... |
Mar 30, 2015 at 7:42pm
[2 replies] Last: What I ended up doing was creating a text file in Visual Studio and sa... (by thebossman)
|
by toesockshoe
Guessing game help.
|
In the follow program, I am having an error when I write to an ouputfile. When my program asks the user for the name of the output file, it first says "Output f... |
Mar 30, 2015 at 6:44pm
[5 replies] Last: Every time you use a cin >> in your program it leaves a "\n" in the in... (by Jims)
|
by spotzform
Multiple inputs from cin
|
I need two user inputs (int) to be pushed back into two different vectors respectively. What I have now is the first user input is pushed back into both vector... |
Mar 30, 2015 at 5:51pm
[3 replies] Last: c1.push_back(i); //... c2.push_back(j); You are pushing back the ind... (by fg109)
|
Problem with...(well basically everything) |
Hello I was writing a simple program,just to train so i've got a problem,here is code: #include<iostream> #include<fstream> #include<string> using ... |
Mar 30, 2015 at 5:35pm
[2 replies] Last: Firstly, this doesn't compile for me. You're using a variable called ... (by SuperCrusader)
|
by etrusks
another pointer exercise again
|
Hi, i was dong next of my exercises and i kind of did it but again there were few questions that i was asking myself. If someone has some free time and likes p... |
Mar 30, 2015 at 5:27pm
[6 replies] Last: @Lorence30 I don't think that's a logic error. The p pointer is supp... (by fg109)
|
File Editing |
I made a program that allows the user to edit (or append to) a file they previously created. If the user enters a wrong name or misspells the file name, how wou... |
Mar 30, 2015 at 4:46pm
[1 reply] : http://stackoverflow.com/questions/12774207/fastest-way-to-check-if-a-... (by fg109)
|