
please wait
by gongong
How to get Average
|
how would i calculate the average and call getAverage() in main? i get that we need to get the mean of the user input ratedTerrible, //0 ratedBad, //25... |
Oct 3, 2019 at 10:02pm
[4 replies] Last: Hello gongong, My apologies. When I say the (input.h) I missed the do... (by Handy Andy)
|
by EnzoC
Problems with two tic tac toe program
|
So i have to code a tic tac toe, and i'm having problems when i try to overwrite some of the char values in the matrix, for example, when i try to place an 'X' ... |
Oct 3, 2019 at 11:41am
[4 replies] Last: oh i was thinking that the array also started counting from 0, thank... (by MikeyBoy)
|
by gongong
Month Class Somewhat Working
|
Hello lovelies, I am having trouble with my input() and output() member function. It doesn't output anything when I'm actually calling them inside main... ... |
Oct 3, 2019 at 6:58am
[2 replies] Last: hmmm that makes total sense!! I think that's the same issue I'm having... (by gongong)
|
by MrBaggins
HW Help for a beginner!
|
Write your question here. I'm having trouble producing this output. His solution is only 60 lines of code and he challenged us to complete it in fewer lines fo... |
Oct 2, 2019 at 9:27pm
[11 replies] Last: Hello MrBaggins, I will start with the variables: int /*n{},*/ col{... (by Handy Andy)
|
by deathzine
is it possible if I scanf in agrc and agrv ?
|
#include <stdlib.h> #include <stdio.h> int max(int n, int n2) { int a,b; if(n > n2) { b = n; } else { b = n2; } } int main (int argc, char *argv )... |
Oct 2, 2019 at 8:34pm
[2 replies] Last: remember that the first location of argv are beyond your control, hold... (by jonnin)
|
Morgage Calculator??? |
The prompt is to create a morgage schedule for someone thinking of buying a new house. The inputs to determine a monthly schedule are the principal loan amount ... |
Oct 2, 2019 at 6:47pm
[7 replies] Last: Hello bethmayweather, My apologies I thought I had said something abo... (by Handy Andy)
|
by SparkXV
Can anybody help me out?
|
Below solution works fine.But when i use unordered map at e place of map it gives time limit exceed.Can anybody suggest me why it is like that? https://codef... |
Oct 2, 2019 at 5:35pm
[3 replies] Last: Not easily. I would have to craft something that performs poorly in U... (by jonnin)
|
by abispac
Looking for someone willing to help for beer money.
|
Im not a coder, just a regular advance computer user (good to search on google than the average person).I use emulators alot to play retro games, and im looking... |
Oct 2, 2019 at 3:53pm
[5 replies] Last: I'll use the job sección instead ,thanks guys. (by abispac)
|
by trannghi7707
While Loop only run once
|
Hi everyone, I've been taking an intro course to programming. I'm stuck on this problem. The program is supposed to print out whatever from the local file and p... |
Oct 2, 2019 at 2:54pm
[5 replies] Last: My understanding is the C++ runtime correctly deals with whatever line... (by Ganado)
|
by Horror
Text-Based Adventure Game In C++
|
I want to try to create a Text-based Adventure game in C++. Can anyone help me out with creating one? |
Oct 2, 2019 at 1:27am
[2 replies] Last: https://www.daniweb.com/programming/software-development/threads/90835... (by deleted account xyzzy)
|
by Gerardo559
reverse array in functiuon
|
Anyone have an example of this? I am lost. A function which takes an array of strings and reverses the order of the array. You cannot calculate its value ... |
Oct 1, 2019 at 7:24pm
[5 replies] Last: Thanks for all the input guys. I think I got an idea of what to do. (by Gerardo559)
|
by mrdik
fibonacci
|
Write your question here: why do I get negative numbers? #include <iostream> int main() { int num, first_number=0,second_number=1,next_number; std::cout<<"... |
Oct 1, 2019 at 6:02pm
[2 replies] Last: Just to add a small note: As soon as your int values overflow, your pr... (by Ganado)
|
by CodeNovice01
My output is wrong
|
Here is an even or odd program. I need to sum the even values up to 180 and odd values up to 160. Each time I run this program, the output is even = 8190 odd 64... |
Oct 1, 2019 at 5:40pm
[2 replies] Last: 8190 looks correct to me. sum 2*i, i=0,i=90 https://www.wolframalpha.c... (by Ganado)
|
by wajna
Help needed with yearly interest calculation.
|
So I have a homework to do where I have to make a loop. The goal is to make the computer calculate how many years it will take me to reach my goal if I put lets... |
Oct 1, 2019 at 4:55pm
[2 replies] Last: cout << "How much you want to save every year: \n"; cin >> nr1; cou... (by salem c)
|
by msamad08
I am having error 2660 and 2084
|
// Scholarships.cpp // This program tutorial demonstrates arrays using vectors // It also demonstrates file I/O techniques with vectors // and makin... |
Oct 1, 2019 at 4:48pm
[16 replies] Last: If ever there was a counter example of "start small, compile often and... (by salem c)
|
by kakaducsy
[help] char [] and char *
|
I dont understand why my program 1 can't show : Hello World Can you help me explain? (I tried on cpp.sh and Repl.it) #include <iostream> #include <stdio.h> ch... |
Oct 1, 2019 at 4:42pm
[6 replies] Last: > as your comment, why do my example 2 print : "Hello" and "Hello Worl... (by salem c)
|
by kbklpl21
reading matrix from a file
|
So my lecturer gave me a a function to read a matrix from a file, but it is in C language, and I can't seem to change it to C++ language and get it to work, so ... |
Oct 1, 2019 at 4:33pm
[15 replies] Last: If you are calculating something in the function and it needs to be se... (by lastchance)
|
by shoaib yehya
Array/File Functions
|
Write a function named arrayToFile . The function should accept three arguments: the name of a file, a pointer to an int array, and the size of the array. The f... |
Oct 1, 2019 at 2:43pm
[17 replies] Last: strlen() does not include the null-terminator, but requires a null-te... (by shoaib yehya)
|
C++ Freeglut Run-Time Check Failure #2 - S, Visual Studio C++ |
My game engine dies when i run my app. When i run app this message pops out:Run-Time Check Failure #2 - S when i click dismiss the app stops working. Here's... |
Oct 1, 2019 at 2:18pm
[1 reply] : It sounds like Visual Studio is doing debug runtime checks. It might b... (by Ganado)
|
by Superman14
Binary Search issue
|
So my program is working how I want it to and all while using a linear search. But I'd like to use a binary search instead but it isn't working properly and I c... |
Oct 1, 2019 at 11:42am
[8 replies] Last: elements-by-abbreviation-and-atomic-weight.txt H 1.008 Li 6.94 ... (by Thomas Huxhorn)
|