by bjl311
what am i missing in my code?
|
|
[2 replies] Last: Thats because 83.5 is not covered in your conditions. You have an opt... (by bjl311)
|
by Andrewcen16
Help with a simple while statement
|
|
[4 replies] Last: while (second < temp) { for(int i=1; conditio... (by Arslan7041)
|
by Apple1234
selecting strings
|
|
[3 replies] Last: "Random number engines generate pseudo-random numbers using seed data ... (by JLBorges)
|
by iamharshit
c++ pointers
|
|
[1 reply] : A pointer needs to point to something . p is not initialised, it cont... (by Chervil)
|
by bankaijoey
Help with C++ code for Run Time Analysis
|
|
[2 replies] Last: Thank You so much. The smallest things really matter dont they? (by bankaijoey)
|
by Dontdoit2306
Student Information
|
|
[3 replies] Last: Thank you. well i had the class but ended up dropping. probably just t... (by Dontdoit2306)
|
by stealthboy
Understanding operators?
|
|
[7 replies] Last: Actually you should be thinking it in terms of a mathematical expressi... (by YFGHNG)
|
by qwaserdf
Modifying a visual studio project
|
|
[no replies]
|
by keanedawg
Is my random number generator failing?
|
|
[3 replies] Last: std::cout << "Max value returned by rand: " << RAND_MAX << '\n' ; O... (by cire)
|
by Respect
Fiboccani Series.
|
|
[5 replies] Last: This is based on the original code: #include <iostream> int main() {... (by Chervil)
|
by PBachmann
C++ question about a code with strings
|
|
[1 reply] : From ASCII table: Dec Chr 49 1 50 2 51 3 52 4 53 5 54 6 1... (by keskiverto)
|
by stealthboy
Help with some simple C++ questions
|
|
[1 reply] : To access the value in memory pointed to by a pointer variable, you m... (by TarikNeaj)
|
I need to use a constant string to take a first and last name, how? |
|
[1 reply] : You could make it like this: string full_name ; cin>>full_name >>fu... (by jgg2002)
|
by Respect
Develop a program that uses a randomly generated number to select 1 of 3 functions to show the user
|
|
[6 replies] Last: Thanks TarikNeaj for the wonderful knowledge! (by Psalazar2016)
|
by Bertdaddy718
Basic Employee Database for School Project
|
|
[8 replies] Last: For some reason folks, I think I"m very close....I tried making it to... (by Bertdaddy718)
|
by Yawzheek
RAND_MAX Help
|
|
[2 replies] Last: What does your line 15 does then, if you really are stumped? Oh. Oh... (by Yawzheek)
|
by rgxq7
Problems with a (relatively) simple program
|
|
[5 replies] Last: On your random: Since you need a range from 0-5 or 0-6 you'll need to ... (by jgg2002)
|
by Gondvanaz
Where to put \f?
|
|
[2 replies] Last: And use the function right after the user inputs data (by jgg2002)
|
by Respect
Write a program which finds the factorial of a number entered by the user.
|
|
[2 replies] Last: #include<iostream> using namespace std; int main(){ int x; cin>>x;... (by jgg2002)
|
by Respect
Develop a program to convert currency X to currency Y and visa versa problem.
|
|
[4 replies] Last: Thanks so much! (by Respect)
|