49,761 Topics
| |
Does anyone know what program is used to create something like the language software ROSETTA STONE? (clickable links, voice recognition, recording progress). Yes, I am a total rookie, but would like to know so that I could hire someone to develop an idea for me. Thanks! | |
Problem: The user should be able to specify a field and a value for that field and the program returns all works that match. For example, the user may specify Artist and Smithely, and the program will output all of the information concerning every work in the gallery by that … | |
Hi to all... for my little application, i wanto t draw a sequence of string (with different size, from array, in a rectangle that i can resize. I draw it with point or with rectangle and stringformat object?? Thak you... | |
This works in Visual C++, but not with the Sun Compiler. [CODE] Stack<Tree<int>> stack; // (Line 40) [/CODE] line 40: Error: "," expected instead of ">>". line 40: Error: Illegal value for template paramter. line 40: Error: "," expected instead of ";". line 40: Error: Illegal value for template paramter. … | |
I would say yes since both are ways of storing information. | |
( Question) :Build a menu-driven program that could transform infix expression to prefix and postfix expression. Your program should also be able to calculate and display the result of the expression. The expression should be input by the user. Implement the stack concept using pointers. [B](in C++ Language)[/B] | |
hi, i am developing a sync application using funambol api. how the mail is uniquely identified by various client application for eg. the same user is configured in two different outlook version. how the incoming items and outgoing items compared and uniquely identified in this situation. i am developing a … | |
Hello I want to attempt a freelance c++ job/project for the skills & experience but do you think there are any jobs out there for my skill level? I have been learning programming for 8 months, only know c++, & I only know the basics, arrays, vectors, pointers, stacks ,lists,queues, … | |
how do check whether a particular file is present in a folder in c++(turbo ) | |
Hi guys First post on this website, so go easy on me. I'm a fairly inexperienced programmer, mostly using snippets of other people's code and adapting it for my own uses, but I have found a problem. I want to change my desktop programatically, but to a picture on the … | |
i have to give a presentation on classes in c++ and i dont even know the abc of it...plz help how to get started and also few important points. | |
Hi to all, i want to save an array of tchar with his value in the map, as std::map<TCHAR [100], int> word; but when i say [CODE=C++]insert(pair<TCHAR [100],int>(text,1))[/CODE] the error is: cannot specify explicit initializer for arrays... Why???? | |
Hello Can you assist me in developing my algorithm? I have to do this: [QUOTE]Write a C++ function balanced that uses a [B]stack[/B] to check that all brackets in a string are balanced. For eg: This is a balance string: [I]This (string) has (balanced {brackets[(now)]} [thanks])[/I] This string is not … | |
hey guys. i have several problems but i stuck with these 2 problems. hope you guys can help me out. 1- [B]Max, Min, Average of Number String[/B] write a C++ program that reads in an unspecified quantity of real numbers, of quantity < 100, and stops reading them in when … | |
I'm attempting to output a 7 digit number in a space 7 columns wide with cout, where loan is my 7 digit number: [code] cout << "$" << setw(7) << fixed << showpoint << setprecision(0) << loan;[/code] Any attempts fiddling with this result in the number being converted to 1e+006. … | |
There appears to be some confusion about what c++ code snippets are supposed to be. I've seen two threads already that are just normal c++ questions but posted as code snippets. I really don't like intermingling the c++ forum with code snippets for two reasons [list=1] [*]Much more difficult to … | |
How is it possible to check if a String is a valid number. The number can be both an int or a double like: [code] String^ ValidInt = "5"; String^ ValidDouble = "5.01"; [/code] | |
It uses the idea of Seive of Eratosthenes. The code is basically does the following to find Prime Numbers : 1) Populate Array from 0 - > MAX 2) Find 1st Prime, which is 2 3) Delete all Multiple of 2, i.e set it to false 4) Find next prime, … | |
[IMG]http://i37.tinypic.com/xp0ei0.jpg[/IMG][code]#include <iostream> #include <string> #include <ostream> using namespace std; class CResistor { public: void InputInfo() { cout<<"Enter a text name for the CResistor object being created."<<endl; cin>>m_sResName; cout<<"\n"; cout<<"Enter the Following Data:"<<endl; cout<<"Resistance Value= "; cin>>Res0; cout<<"Tolerance Value= "; cin>>Res1; ResTolValue=(Res0*Res1); Res2=(Res0+ResTolValue); Res3=(Res0-ResTolValue); cout<<":Max Resistance= "<<Res2<<endl; cout<<":Min Resistance= "<<Res3<<endl; cout<<"\n"; … | |
Hello, I need some help with this code. First of all, the program just closes after I enter the rows. It's not supposed to do that. Then, the coordinates (cards) 1,1 and 2,3 need to face up when I start it. How do I do that? I hope someone can … | |
I am having a hard time grasping ADT using linked list. I have a struct node in a class where i have a node constructor. I cant create a link list without using the constructor. But thats where i am lost. This is what i have [CODE] #include <ostream> #include … | |
Hi all, I have the following code written for work. The point of the program is to take input from the user as to which customer id (phone number) is required. Once the program has this data, it will open a specified folder to search through each line of code … | |
so im creating a program on hours and minutes. and well my program basically works just that the output is a bit off. [code] #include <iostream> #include <string> #include <iomanip> using namespace std; void getHours(int& input1, string& s); void getMinutes(int& input2, string& s); void calcTotalTime(int& input1, int& input2, int& input3, … | |
Hi to all, i have a little problem with my little application. I create a graphic object where i draw a series of text. I create it with [CODE=C++]Graphics gg(hdc)[/CODE] where hdc in the handle context of the screen ( BeginPaint ). Now i want to save this graphics object … | |
1.write a program that asks the user to type 10 integers and writes the sum of these integers.Using [B]for[/B] loop.Can anybody help me with this question?? | |
Here is my whole problem can someone please please HELP Please 1. SPLIT THE PROGRAM IN 3 FILE NETWORK. H, NETWORK.CPP. CLIENTNET.CPP AS IN ADT. DONE 2. DEFINE A CLASS CALLED ADDRESS_T (done) with member for the four integers of an internet address and a fifth member in which to … | |
[CODE]#include <iostream> #include <cmath> using namespace std; int n; void main(){ cout<<"input the number of students: "; cin>>n; double *scores= new double[n]; cout<<"enter the scores of the students: "; for( int i=0; i<n; i++){ cin>>scores[i]; } double sigma,sigma2, mean, strDev; int ii; for (sigma=ii=0;ii<n;ii++){ sigma+=*scores; *scores++; mean= sigma / n; … | |
I play this game called GunBound, and have a nice C++ script for it. But I need a function that can help me do the following: [CODE]int x=390; int y=450; for(int i = 0; i == 0; x++) { if(scanpixel(x, y) == YellowColor) i++; }[/CODE] I need to get the … | |
Can anyone help with using c++ derived types in fortran? I got a pdf but it was of no use. | |
The file "airports.csv" contains [U]12 pieces [/U]of info per line - separated by commas: [B]BIN,"Bamiyan","Bamiyan","Afghanistan","AF",34.800000,67.816667,701,"Afghanistan",\N,\N,1149361[/B] (there are 3 such lines for now) How do I modify my program to take the 1st, 3rd, 5th,6th,7th pieces of info per line and store them in an array- ill later use that array … |
The End.