49,766 Topics

Member Avatar for
Member Avatar for jepapel

ok - challenge number 2: What now if i would like to input letters and the letters would be displayed as numbers? For instace i would like to input b a d and it would display me the corresponding numbers. The opposite of what Mr.Dave Sinkula (look thread:[B]Need help with …

Member Avatar for zyruz
0
335
Member Avatar for jepapel

Hi, I am developing a program in c++ and what i want to do is to assign an integer to a character. To become more specific i want to make an alphabet and assign to each letter a number. So far so good. The problem is that i want it …

Member Avatar for zyruz
0
298
Member Avatar for karen_CSE

hi, I'm trying to write a program that separate an array into 2 arrays, odd and even numbers. but I don't know how. can you please help? I'm stuck and don't know how to continue. This is what i have so far //this program accepts 10 integers, stores in an …

Member Avatar for karen_CSE
0
357
Member Avatar for BenPage

Hi there. I am currently working on a project to identify users using their typing dynamics. I want to record the intervals between characters as a user type in their passwords and use these recorded intervals to identify the users. I am using Windows XP and Visual Studio C++ 2003 …

Member Avatar for Electrohead
0
179
Member Avatar for gagan

i m having one doubt regarding hybrid inheritance . i m just a beginner so its not clear to me :confused: DOUBT: WHY THE FOLLOWING CODE IS GIVING AMBIGUITY ERROR #include<iostream.h> class a { public: void f() { cout<<"base class\n"; } }; class b:private a //visibility mode private { public: …

Member Avatar for gagan
0
321
Member Avatar for k_en

[COLOR=Black]hi, i am a newbie and i just started to learn C++. My question is , if i put a number like 45678 in [COLOR=RoyalBlue]char x[6] [/COLOR] then how do i separate each number and put it into [COLOR=RoyalBlue]int num[6][/COLOR].[/COLOR]

Member Avatar for Drowzee
0
372
Member Avatar for djbsabkcb

Below is the start of my source code for a program I am trying to figure out. We have to compute the approximate value of PI with random throws at a dartboard. It is considered a hit if it lands inside unit circle (0,0) and radius 1. Any help on …

Member Avatar for djbsabkcb
0
2K
Member Avatar for cpp noob

hi, as you can see when the value 'a' is to be entered we have to press enter with it too, is there anyway that it can happen by just entering the digit and not pressing enter after it. :eek: # include <iostream.h> # include <conio.h> # include <dos.h> # …

Member Avatar for Dave Sinkula
0
267
Member Avatar for mixsir

I have a part of code that cannot show the result as shown below: patter#1 ***** **** *** ** * pattern2 * ** *** **** ***** pattern3 ***** **** *** ** * Any idea to solve the incorrect code below: #include <iostream.h> using namespace std; int main(){ int i=0 ; …

Member Avatar for zyruz
0
112
Member Avatar for Raven11

Hello, I'm working on replacing functions in DLL files. I most likely will use a trampoline once I get more advanced. However, my question is (I've tried searching google and only came up with crap) how can I find the API in a DLL? I know I will then need …

Member Avatar for Raven11
0
229
Member Avatar for djbsabkcb

Below is my code to calculate interest and balances and how many months to get there. However, my months calculations are way off by the thousands. Any idea? #include<iostream> #include<string> #include<cmath> using namespace std; class Account { public: Account(); Account (double bal); void deposit(double amount); void withdraw(double amount); double get_balance() …

Member Avatar for djbsabkcb
0
2K
Member Avatar for djbsabkcb

Below is a program that determines if one address comes before another address using classes. One constructor takes an apartment parameter and the other doesn't. My errors are invalid conversion from int to const and among others. Any ideas? [code]#include <iostream> #include <stdlib> using namespace std; class Address { public: …

Member Avatar for djbsabkcb
1
981
Member Avatar for synth

Lately I purchased VC++ 6. It worked well for a while until it suddenly ceased to function at all just a few days ago. Here is what happens: Visual Studio opens and runs well enough. I can open a project, edit code, and so on. I can execute my program …

Member Avatar for winbatch
0
234
Member Avatar for Decessus

I'm at the end of chapter 2 of Michael Dawson's Beginning C++ Game Programming. The first exercise at the end of the chapter, has me rewrite a program earlier in the chapter using enumerations. The program is just a simple choose your difficulty level. You enter a number that represents …

Member Avatar for zyruz
0
645
Member Avatar for Drowzee

Well, blast. My first attempt took too long, and I autodisconnected. Short version: Not doing homework, on internship(first gainful employment). Task: Make GUI for existing Console app that takes binary input file. Milestone: By Monday, create windows App that displays output of binary and text input files using MFC. Assumptions: …

Member Avatar for Drowzee
0
270
Member Avatar for 3nCrypti0n
Member Avatar for George2

Hello everyone, I am looking for education materials of developing C++ application with Eclipse. Could anyone recommend some good education materials? Thanks in advance, George

Member Avatar for George2
0
127
Member Avatar for winbatch

Guys, Either there is a bug in the compiler or I'm getting dumber by the day. I want to read an entire file into memory. (Very small file, so no worries about size here). I followed the example here (from [url="http://www.cplusplus.com/"]www.cplusplus.com[/url]) [code]// reading binary file #include <iostream.h> #include <fstream.h> const …

Member Avatar for winbatch
0
315
Member Avatar for Kazastankas

Any clean way to get from one to the other? erase() has been pretty vexing for me.

Member Avatar for Dave Sinkula
0
112
Member Avatar for lallous

Hello i got an assignment to do on classes, basically i got 90% of the program working except for some minor issues which i cant seem to figure out. Here is the code: [code] #include <iostream.h> #include <assert.h> #include <cstring> class weather { private: int day; int month; int year; …

Member Avatar for lallous
0
106
Member Avatar for jhdobbins

im confused as to how to get the pointers to save values... anyone with helpful advice??? this is where i have gone so far.... [CODE]#include <iostream> #include <cstdlib> using namespace std; int main () { typedef struct dataNode { char arriveCity[30]; char departCity[30]; int totalPassengers; int passengers; int flightNumber; struct …

Member Avatar for jhdobbins
0
244
Member Avatar for Decessus

I am just beginning to learn how to program. I'm using the "Beginning C++ Game Programming" book written by Michael Dawson. One of the programs in the book isn't working out like it should. Would this be the forum I use to get some advice on what I might be …

Member Avatar for Dave Sinkula
0
244
Member Avatar for Kazastankas

Now, in this particular one, I'm attempting to make a two-dimensional container that stores vectors. Of course, I wanted both dimensions to be dynamic at first, but once convinced that even attempting to do a 2D vector was nearly impossible or required a heap of used memory via the resize() …

Member Avatar for Kazastankas
0
171
Member Avatar for desidude

hi , Please take a moment to read this i am trying to write hexadecimal.cpp program for my C++ programming class but i dont know how to do it. the Project says as follows You have to design and implement a C++ program that reads numbers from a file,converts them …

Member Avatar for Kazastankas
0
264
Member Avatar for shahid

i write c++ program using template class that program take lenght and width of rectangle as integer, float and double and display the area and perimeter of rectangle. but my program does not run. please some one check this mention mistake or write this in a better way code: [code]//header …

Member Avatar for CrazyDieter
0
99
Member Avatar for paladin4service

Hi! I am new to this, and new to the programming. To be honest, it's not easy. I am having this problem with doing Complex numbers. Basically, I have to write a program to show the Amplitude and Phase of a Complex object. First, because Amplitudes are usually absolute values, …

Member Avatar for paladin4service
0
1K
Member Avatar for freemind

Hi to everybody! I'm writing a program that has to simulate a working system for deliveries of goods to some cities. I get several mistakes from the compiler while temporarly checking the code but they can't point me out the problem good enough.. Therefore I dare to bother you with …

Member Avatar for freemind
0
93
Member Avatar for tundeakins

dear programmer A pharmacy needs to automate drug inventory management system. Every drug has chemical Name, Chemical Composition, date of manufauturing, expiry date, and courtry of origin, quantity, category and others. the pharmacy has a policy to dispose expired drug before use. however, it is not an easy task to …

Member Avatar for Narue
0
159
Member Avatar for gluber

Hello.. it's me, again :mrgreen: sorry but I really need code for locking folder not a code for changing the attribut. :( 'cause i want to put my precious file in that folder :( so my friend can't steal it :evil: . Everybody in the world who can/want to help …

Member Avatar for Narue
0
196
Member Avatar for alone2005

if the token is separated by character like ':' or '|' how can you use sstream to tokenize it? << moderator edit: split thread from [thread=27724]here[/thread] >>

Member Avatar for alone2005
0
10K

The End.