by ItsTheSebbe
if this or this then that
|
|
[1 reply] : Yup, C++ has a lot of different operators including logical operators.... (by Krzysztof Kawa)
|
by rapunzel
USACO "bead" problem
|
|
[3 replies] Last: Thank you but I understood my answer . If you want to know the correc... (by rapunzel)
|
by hkrishnan81
binary to decimal
|
|
[1 reply] : The code does not compile #include<iostream.h> #include<conio.h> voi... (by Chervil)
|
All Domain Computer's Informaiton |
|
[2 replies] Last: Installing your program on every machine would work, but what if you c... (by SamuelAdams)
|
by pointer13
Printing an array
|
|
[3 replies] Last: Yes I missed that part, now it works. I suppose I can just initialize ... (by pointer13)
|
by vgoel38
prime numbers
|
|
[1 reply] : I may be wrong, but I've always considered the sieve method to be fast... (by Chervil)
|
by derrikjb93
Looking for friendly advice
|
|
[8 replies] Last: And the other half.... } else{//if player1 is set t... (by derrikjb93)
|
by donfire
what is this? cin.unsetf(ios::skipws);
|
|
[1 reply] : it's the longer way to write cin >> noskipws it stops formatted input ... (by Cubbi)
|
by noisycoder
Template overloading
|
|
[6 replies] Last: i'm using eclipse. Also, could you help me with one problem? In the he... (by noisycoder)
|
by Mickelplick
Help with functions
|
|
[6 replies] Last: Firedraco --- thanks for the explanation --- it makes total sense now ... (by Mickelplick)
|
by Engineer1608
Comparing Two Strings
|
|
[1 reply] : Hi there, You are trying to compare c-strings, which are basically ar... (by NwN)
|
by metulburr
methods of cin
|
|
[1 reply] : cin.get() -> http://www.cplusplus.com/reference/istream/istream/get/... (by Fransje)
|
by VictusBcb
Duplicate Numbers, Output not right?
|
|
[3 replies] Last: Some problems: Lines 6 & 8: x starts at 0 and increases, z starts at ... (by TheIdeasMan)
|
Finding prime factors of individual numbers |
|
[5 replies] Last: /* PRIME FACTORIZATION PROGRAM *//* 60 = 2 * 2 * 3 * 5 */ #include <... (by usandfriends)
|
by Kovs95
Fun with Functions part 3
|
|
[6 replies] Last: Nevermind about those questions! thanks to all who helped! You all wer... (by Kovs95)
|
by Thaity
Error Message
|
|
[5 replies] Last: Thank-you once again, all input is greatly appreciated. (by Thaity)
|
by hkrishnan81
help
|
|
[1 reply] : Please use code tags First of all, 'c' is uninitialized, and you're n... (by maeriden)
|
by donfire
Array..tallying numbers
|
|
[3 replies] Last: /* code by usandfriends */ #include <iostream> #define RESET 0 main... (by usandfriends)
|
function pointer declaration syntax |
|
[3 replies] Last: I like using one of these: typedef void function_type(int) ; functio... (by JLBorges)
|
by Pwego
Getting white screen, not working
|
|
[3 replies] Last: You are not changing 'start' anywhere in that loop. So once the loop ... (by Disch)
|