
please wait
by anubisabydos
Problem with vector iterator
|
I am currently in a object oriented college course and the assignment is to make the old school asteroids game in openGL. I am using visual studio to do my writ... |
Mar 10, 2017 at 9:28pm
[2 replies] Last: Thank you very much... cant believe that I just forgot to add the incr... (by anubisabydos)
|
by coradelaide
for Loop problem
|
So this is the problem I have to work on : Using for loop and if - else statements , write a program that reads 8 integers from the user. The integers can be p... |
Mar 10, 2017 at 8:38pm
[9 replies] Last: Can you tell me why when counting the SUM or the FREQ for negative va... (by dhayden)
|
by avavida
Grade Calculator Using PHP
|
Below is the code I have used for my php program which is linked to a html file, this program calculates grades, everything is correct, except for the fact that... |
Mar 10, 2017 at 7:19pm
[2 replies] Last: hello avavida, It's work with parameters http://localhost/ep/newfile.... (by Cocos)
|
by AlanG
Why is initialization preferred to assignment?
|
I know this is not a new feature of C++11 but it has been enhanced. And I've never quite understood the reasoning. It seems that it is preferable to use ini... |
Mar 10, 2017 at 5:10pm
[10 replies] Last: #gunnerfunner: By "non class member" I meant a member which was not a ... (by AlanG)
|
by coradelaide
First value skipped when trying to sum in for loop
|
The first negative value that is entered is not counted either in the sum or the count. It just happens for the negative values and not positive or zero. Help ... |
Mar 10, 2017 at 4:53pm
[2 replies] Last: Have a closer look at for (y = 0; x <= 7; x++) Also have a look at... (by Thomas1965)
|
by rezy3312
classes string print out
|
I am getting the address to print out but i want it to return the string that it was given any help will be appreciated. header #pragma once #incl... |
Mar 10, 2017 at 3:59pm
[1 reply] : Hello rezy3312, In main lines 12 - 14 obj.function1 is not a functi... (by Handy Andy)
|
by parkhill
Reading in chars including blank spaces but not new line
|
I am trying to read in a text file of characters including blank spaces. I've tried a few solutions but all of different problems. The input file looks like th... |
Mar 10, 2017 at 3:30pm
[3 replies] Last: I fixed the problem, the getline needed to be moved outside of the sec... (by parkhill)
|
by coradelaide
Do while sentinel
|
Hi How do I add a sentinel using a do while loop here so that when I enter -500 the program will close. #include <iostream> #include <iomanip> #includ... |
Mar 10, 2017 at 2:50pm
[2 replies] Last: #include <iostream> int main() { const int sentinel = -500 ; ... (by JLBorges)
|
Recursion |
Define a recursive function int sum_range(int low, int high) that computes the sum low+(low+1)+(low+2)+⋯+high using recursion. You can assume low≤high. ... |
Mar 10, 2017 at 2:39pm
[4 replies] Last: I think its if (low == high) return low; //the +1 was handled in the ... (by jonnin)
|
by gambette
fstream with array error
|
i tried to read/write an array to a file but gotten the "no matching operator" error. I've read through for possible causes for this error but my code doesnt co... |
Mar 10, 2017 at 1:57pm
[2 replies] Last: the array courses is declare in a class called registration. I've als... (by gambette)
|
by Kourosh23
function outside of base .h file -BUG!
|
Is there any way you can include a function inside your .h file that is not int the base .h file ? In other words, the function is not in base .h file and it is... |
Mar 10, 2017 at 11:42am
[5 replies] Last: Yes, if the problem is that you're calling calculate_score() from prin... (by Peter87)
|
by gubhaus
Program that prints values of sin and cosines
|
I am working on an assignment for school that prints a table with the values for cosine and sin up to 360 degrees, as well as the degrees and radians in various... |
Mar 10, 2017 at 10:48am
[3 replies] Last: Also, don't use doubles in a for loop - their representation is not ex... (by TheIdeasMan)
|
by kojoguy
a rocket launch sound
|
please any body to help me on how to add sound or go to the extent of adding a sound in a written code... im on a project to write a code of a rocket launch ... |
Mar 10, 2017 at 10:30am
[3 replies] Last: If you are using a Windows computer you might be able to use Beep(). I... (by lastchance)
|
by zerkas101
Class: Setting name in console
|
I have this code here but I would like to know how to set the name,lastname and phone in the console itself instead of in the code. #include <string> #in... |
Mar 10, 2017 at 10:10am
[1 reply] : Use std::cin to get input from the console. std::string first_name; ... (by integralfx)
|
by kojoguy
a guessing game to give only 3 output
|
hello everyone please have been given an assignment to write a code to guess exactly 3 times |
Mar 10, 2017 at 6:01am
[6 replies] Last: You're welcome. Hope i explained it well enough. If youre still stuck ... (by kingkush)
|
by DoubleG
Adding White space
|
Hi guys, how do I add white space for every count? for example if userNum = 3 then it should print 0 1 2 3 int main() { int userNum = 0; int ... |
Mar 10, 2017 at 5:33am
[4 replies] Last: #include <iostream> int main() { int userNum = 0; std::cout ... (by JLBorges)
|
by sesslit805
objects and instances
|
Can someone explain what is an instance of an object? |
Mar 10, 2017 at 2:46am
[4 replies] Last: you haven't shown FlightReservation.h but if an instance of this type ... (by gunnerfunner)
|
by xbamx23
HELLPPPPP!
|
In C++ : Problem Description: Create NumDays Class to store a value that represents number of hours worked and number of days worked. Must ensure that the... |
Mar 10, 2017 at 2:07am
[2 replies] Last: class numDays { private: int numHoursWorked; int numDaysWork... (by kingkush)
|
by Sillurechii
Switch to Function
|
Hey programmers, for this code what I'm trying to do is rewrite this program in terms of functions. I've messed around with it a little bit in the addition sect... |
Mar 10, 2017 at 1:59am
[1 reply] : You must put a text file of all the data you need into your project fo... (by kingkush)
|
by jollyholly11
Help doing a class function
|
Hello all, I am trying to write a function that enters in a new name for the student name Po, and passing a value instead for that name. I have tried running ... |
Mar 10, 2017 at 1:56am
[1 reply] : I believe the function should be called : s -> setName(name); s is ... (by kingkush)
|