| |
Rating
Thread /
Thread Starter
|
Last Post  |
Replies |
Views |
|
|
by WaltP
Guidelines for Posting Requests for Help
version 3.1
GIDForums is pleased to provide these forums to help you understand programming techniques and correct programming problems. Following these guidelines will help you post good questions with enough information that we can understand your...
|
21-Apr-2005 03:44
by WaltP
|
0 |
13,664 |
|
|
by veronicak5678
I need to write program that inputs a scrambled word and compares it against a pre-determined list of words. I am first checking for length, then if a match is found, sending them to a function to compare the letters. I can't seem to get the loops right. Here is what I have so far:
#include...
|
|
4 |
366 |
|
|
by Kreagen
Any assistance that could be given in this would be so greatly appreciated.
I need to write app that asks a user for the package selection month of usage and hours used, and authenticate then month and hour input, this is what I have thus far but and stumped of weather or not to:
A us If statments...
|
|
4 |
201 |
|
|
by Mr_Peepers
Currently I need to read data from a file, such like this
Measurements for Lansing, Michigan during April, 2000
63 32 0.00
54 43 0.10
59 39 0.00
46 24 0.00
52 20 0.00
54 30 0.00
|
21-Feb-2008 20:22
by davis
|
8 |
367 |
|
|
by kvidya
Hi,
I get the following error with the code below:
In member function 'T* LoadManager::Find<const char*>':
error: expected primary-expression before ';' token
---------------------------------------------------------
template<typename T>
T* LoadManager::Find( const char* objectName )
|
|
0 |
202 |
|
|
by monkeeass83
Can someone help me with a sudoku recursive algorithm. The requirements of the function is that it must first try to solve the puzzle from the inputs the user has entered. If it is not solvable after the user has entered values, then it must display a message saying that it is not solvable and go...
|
|
3 |
418 |
|
|
by giugio
I would create a Information system application on a civil/structural project written in C++ MFC. I have a list of beam, frame and shell objects (in some collections) with a lot of properties I would to select and update this collections on the fly.
I read some on in-memory databases what are the...
|
21-Feb-2008 11:14
by davis
|
10 |
1,391 |
|
|
by meili100
What are the differences between them? Or they are the same.
|
|
1 |
6,399 |
|
 |
by msbolduc
Hello, I have a folder with approx. one thousand *.csv files and am trying to figure an easy way of opening each file in sequence, 1 at a time, extracting a few fields, doing a few calculations then writing them to a new *.csv file. My entire program works great and is easy to use for the few files...
|
20-Feb-2008 18:01
by WaltP
|
3 |
1,628 |
|
|
by monkeeass83
I need help with erasing and inserting in 2D vectors. I would just use a 2-D array, but the assignment specifically says no arrays. I am trying to write code for a sudoku program. An example of the input is below:
1 0 0 6 0 8 0 3 0
0 2 0 0 4 0 9 0 7
0 0 3 0 0 7 0 6 0
2 0 0 4 0 0 1 0 8
0 9 0 0 5...
|
|
4 |
286 |
|
 |
by rohit83.ken
is there any way or any software available to produce c/c++ code from the flowcharts or, pseudocodes or ,algorithims
can any one provide the links or any information
prethanks to helper
|
20-Feb-2008 04:37
by davis
|
1 |
572 |
|
|
by jrod738776
Ok well I'm trying to make a program that uses the pi formula and outputs 3 different answers. The formula is p = 4*(1 - (1/2i-1) + (1/2i+1). The 3 answers I need to output are when i = 100, 1000, and 100000. I need to start with i = 2 and each time through the loop another 2 gets added to i and...
|
19-Feb-2008 17:56
by davis
|
1 |
256 |
|
|
by meili100
string x = "test1";
switch(x){
case "test1" : break;
case "test2" : break;
default : break;
}
Why this doesn't work for the string?
|
|
1 |
820 |
|
|
by Tekker
So I had this working until I added the case statement to define the numbers of hours in the months. The math's right and aside from the "ifs" not recognizing the else, the only problem is the first case.
//Internet Program
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
|
|
7 |
310 |
|
|
by takachi
Hello!
I am new to the c++ programing style and as my first exercise I wrote a code for the cpp file of a class which I am supposed to write.
the class is supposed to hold an expression which consists of brackets and the 4 basic operators: +,-,*,/.
one of the functions which the class contains is...
|
|
12 |
445 |
|
|
by sgies
I am looking for a solution of parsing data in C language, I have attached the code below with some comments in it. What actually I am looking for not to call the sscanf function with the number data is available (In this it is 3) as it is random and can be anywhere between 0 to...
|
18-Feb-2008 10:33
by sgies
|
0 |
268 |
|
|
by Raddie
i was used to with the programming language FORTRAN, but i gotta generate random numbers in devcpp...
i heard that there is a inbuilt rand() function in c...
i just wanted the coding which will generate the random numbers in devcpp using this inbuilt function....
actually i had tried myself to do...
|
18-Feb-2008 02:21
by WaltP
|
3 |
1,299 |
|
|
by shampaynes
my teacher gave me an assignment to complete the blackjack program but I have little understanding of it. I have the majority of it but i'm missing pieces.
NOTE: All of the sections where it says TO DO are the missing pieces.
PLEASE HELP.
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
|
|
1 |
210 |
|
|
by partnole
void runProgram()
{
string command;
do
while(command!="QUIT")
cout<< ">"<<endl;
cin>> command;
if (command == " ")
|
|
6 |
242 |
|
|
by utdemir
How can the program understand the variable is a number or a char?
|
|
7 |
306 |
|
|
by stburge
I need a little help developing a recursive solution. I've worked all the way down to the base case but I'm not working back up in the proper way. Once I work down to the base case I want to add the lowest value of two seperate array elements. Code :
int JumpIt(const int gameBoard, const int...
|
|
2 |
310 |