
please wait
by Nick Kilby
compiler
|
i've been looking for a simple compiler to start off on, i have tried code blox off of a friend's reccomendation but it isn't working well for me, what else cou... |
Feb 10, 2013 at 8:55am
[1 reply] : dev c++ is pretty simple. I use microsoft visual studio, but it's a li... (by palauan73)
|
by Vorstoss
OOP AdressBook Errors in main
|
I'm almost done with this program but I am stumped on the errors I'm getting in main. Any help would be appreciated. Here are the errors: error C3861: 'addP... |
Feb 10, 2013 at 8:09am
[2 replies] Last: Ahh, stupid mistake. I fixed it. Thanks for your time Perter87. (by Vorstoss)
|
Showing player trail in a tron game. How to? |
Hello I have a tron game that I have created for class. I can't quite figure out how to do the player trails. I tried to do something with if statements but it ... |
Feb 10, 2013 at 5:50am
[no replies]
|
If statements |
Can you include an if statement inside an else if statement? THANKS |
Feb 10, 2013 at 5:40am
[4 replies] Last: Alright, thanks everyone for your help, I appreciate it! (by closed account 4wRjE3v7)
|
by smile58
Error 0x0
|
when i run TC.exe it gives an error of 0x0,screen shot is pasted below : http://s9.postimage.org/vypou4lkv/image.png i am running this on windows 7, also ... |
Feb 10, 2013 at 5:30am
[no replies]
|
by bezerkfury24
return function
|
please help me i want to know what the question mark and the colon does. return ((value1 > value2) ? value1 : value2); |
Feb 10, 2013 at 4:51am
[2 replies] Last: thank you so much for the help. (by bezerkfury24)
|
by Drunkzombie
help error i dont know where it is!
|
#include <cstdlib> #include <iostream> #include <cstdio> #include <string> #include <conio.h> #include <time.h> using namespace std; co... |
Feb 10, 2013 at 4:15am
[3 replies] Last: What do the error messages tell you? Line 87: You want the assign... (by AbstractionAnon)
|
by stc5097
passing values from one function input into another function for searching
|
i am writing a program for my advanced c++ class. i am having trouble due to taking regular c++ two years ago because of transferring and changing majors to co... |
Feb 10, 2013 at 3:57am
[no replies]
|
by nerfed
Help with boolean
|
#include <iostream> #include <cmath> using namespace std; int main() { string monthName ={"January","February","March","April","May","June","July","Aug... |
Feb 10, 2013 at 3:27am
[no replies]
|
by Tentbob
Do not allow the user to type letters in the cin input
|
Hi, what code do you use to make it so the user is not physically able to type letters in the input for a cin statement , only numbers , and vise-versa?... |
Feb 10, 2013 at 1:50am
[3 replies] Last: Thanks Guys! (by Tentbob)
|
keyboard control |
Hi guys, the thing is, i want my program to exit when the user presses the escape button. I've tried using the getkeystate() function but the prog just skips it... |
Feb 10, 2013 at 1:29am
[3 replies] Last: You need to #include windows.h int main() { cout<<"Welcome to ... (by rcast)
|
by sakonpure6
Coding Problem
|
If/Else Homework A “magic” number is an integer in which the number is equal to the sum of the cubes of its digits. Write a program to determine whether a ... |
Feb 10, 2013 at 12:48am
[3 replies] Last: much appreciated thank you so much! however I this is too advanced for... (by sakonpure6)
|
by mauriciocpp
Números complexos
|
Sou iniciante em programação e estou estudando C++ e gostaria da ajuda do forum. Estou fazendo um programa de números complexos e na função soma(p.ex)tenh... |
Feb 9, 2013 at 11:47pm
[5 replies] Last: Obrigado pelas dicas. (by mauriciocpp)
|
by anonymousxyz
How to end getline Method (and Move on to Next Part of Code)
|
Hello and thanks! Her is my code: #include <cstdlib> #include <iostream> #include <string> #include <sstream> using namespace std; string mystr; int main(in... |
Feb 9, 2013 at 11:46pm
[14 replies] Last: I'm not using AVG. but a quick google shows others have found anti-vir... (by Chervil)
|
by Ch1156
Creating a C++ tutorial website need help understanding some code
|
Ok so Im creating a c++ tutorial website, now your probably saying "why? thats what this site is" and you are correct BUT my website is being designed to help p... |
Feb 9, 2013 at 11:20pm
[12 replies] Last: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf W... (by closed account zb0S216C)
|
by jackbruns28
problem with variables/converting fahrenheit to centigrade
|
Ok. So, I have just started up my intro to programming class and am already confused. For this project we are supposed to be converting temperature from fahre... |
Feb 9, 2013 at 11:10pm
[5 replies] Last: Oh yeah, for some reason the - sign never took. So I did retype it an... (by jackbruns28)
|
by Niven
Loading MD2 files with Opengl
|
I'm looking for help with being able to load an MD2 file. Right now I'm trying to be able to load and display the model before I write code for texturing it. Th... |
Feb 9, 2013 at 10:56pm
[no replies]
|
can someone please help me figure out how to form an X shape with asterisks? |
hey, can you guys please help me figure out how to make an x shape. so far, all i can do is get the one diagonal side with the following code, but i can't get t... |
Feb 9, 2013 at 10:42pm
[no replies]
|
Do I need to multi-thread? |
I'm making a simple console based nuclear reactor sim game. The main loop looks like this: bool done = false; while(!done) { char cmd; cout << "CMD>";... |
Feb 9, 2013 at 10:34pm
[3 replies] Last: thanks :) (by closed account 2NywAqkS)
|
by Lynx876
Alphabetical sort of vector - struct.
|
Hello again cplusplus.com! As the title suggests, I'm trying to sort a vector by the std::string name within a struct. But I've run in to a problem that I don... |
Feb 9, 2013 at 10:20pm
[3 replies] Last: It's a bool function. so; return 1 < 3; Would be true. (: Edit :... (by Lynx876)
|