49,757 Topics

Member Avatar for
Member Avatar for Jed_1

So, I've been through a class in java so I know a little bit of what I'm doing... The assignment I have is to create a program that takes a string and converts the letters four away in the alphabet (ie: a becomes e and so forth). I've gotten most …

Member Avatar for Jed_1
0
661
Member Avatar for christinetom

Hello everyone.. Would anyone know why I can't do the below. I'm not the best programmer in the world so I'm wondering why the below won't work. I get an error 'A template declaration cannot appear in block scope' No doubt it's due to my lack of understanding of the …

Member Avatar for Kenney_1
0
3K
Member Avatar for lloydsbackyard

i am given this topic array - object oriented programming for report. i just some of your advise do i need to discuss OOP? including like inheritance, encapsulation, polymorphism ..etc.. or should i discuss only concepts of arrays definition etc... any addition to my outline: definition of arrays types (single-multi) …

Member Avatar for Kenney_1
0
253
Member Avatar for Pinku Deb

I am getting Wrong Answer on submission. Problem link:http://www.lightoj.com/volume_showproblem.php?problem=1039 Code:http://ideone.com/1iMkOX I implemented the BFS inside the main function instead of coding it in a seperate function.

Member Avatar for Pinku Deb
0
275
Member Avatar for andrew.mendonca.967

CSCI-15 Assignment #1 — Functions and files review (40 points), due September 9, 2013. Write a program to read the coefficients of a series of quadratic equations from a text file and print the associated roots, or appropriate errors if there are no real roots, to another text file. The …

Member Avatar for andrew.mendonca.967
0
563
Member Avatar for Max_3

Im trying to figure out how to read a file that is entered into the command line. I tried using #include <iostream> #include <fstream> #include <cstdlib> #include <string> int main(int argc, char *argv[]) { std::string a; int b, c, d; std::cout << "please enter the name of the file: " …

Member Avatar for Ancient Dragon
0
97
Member Avatar for Ceejayyy

Create a program that will input a number in kilowatt and display its equivalent masures in watts. PLEASE ANSWER. :)

Member Avatar for Ancient Dragon
0
138
Member Avatar for chase.lewis.3114

I'm working an SSE / AVX library and have almost all the basics working, but now I'm trying to get the accuracy / speed a bit better on certain functions. Essentially I'm using a minimax polynomial that when using infinite precision should give me ~2E-9 error, plenty for floats for …

Member Avatar for vijayan121
0
193
Member Avatar for dasdgfds

I have a class person, with a first name, last name...ect. The user is prompted a menu and I am having trouble with the option to delete a name. It seems the string variable is not getting updated when the user enters it and another prob is getting an infinite …

Member Avatar for rubberman
0
122
Member Avatar for khgcvjnhgvb

Hi Guys, I was wondering if someone could help me with this small program, i am kinda new to programming and well i have been given this assignment on collision detection for airplanes. i have done some coding implementing the algorithm and well i have specified the coordinates or points …

Member Avatar for rubberman
0
420
Member Avatar for frank.j.dan

am new in programming and i need your help.after writting a code if i compile and run the console will not display the output but rather shows and go immediately

Member Avatar for deceptikon
0
104
Member Avatar for bejfake

Hi, I'm creating remote desktop application in qt 4.8. I have to implement some way to browse remote computer directory structure and possibility to download files on local machine. I'm wondering how can achieve this...

Member Avatar for [Prototype]
0
333
Member Avatar for Shivam_4

Can someone help me with solving boolean expressions with the help of forward chaining. A good tutorial will also help me. Example: A.(A + B) = A A.(A + B) => A.A + A.B [Applying distributive law] A.A + A.B => A + A.B [Applying idempotency law] A + A.B …

0
182
Member Avatar for ScienceNerd

I'm trying to solve a cryptarithmetic puzzle TOO + TOO + TOO + TOO = GOOD using a program. My solution to this, is to use a nested loop for each unique letter (in this case T, O, G, D). The loops would systematically assign the digits from 0-9 to …

Member Avatar for casey.cole.12576
0
2K
Member Avatar for movarth

I was just wondering what kind of behavior is expected when hooks are set, I can modify my code to test it (which isn't really necessary), but I was hoping it's normal for when hooks are set for input to be buffered for a few seconds and then display. If …

Member Avatar for Ancient Dragon
0
122
Member Avatar for jigmey thinley

how to solve pattern given below using nested for loops.. * * * * * * * * * *********** somebody please help me with the logics.

Member Avatar for Gonbe
0
210
Member Avatar for thephoenix.21

hi all !! i am new on that forum, and i have just started C++ programming, i know some basics. now i would like to start developping a program, i need some idea that could be evoluted everytime, so i work on it while i improve my programming skills. thanks …

Member Avatar for Kenney_1
0
199
Member Avatar for dospy

the basic idea is that i have a config file where i need to take entries in different formats(the key is always a string and the value could be any type: int, float, string etc) from and the file has the following style: firstentry 1.5 secondentry 35 thirdentry somestring and …

Member Avatar for sepp2k
0
387
Member Avatar for Sky rain
Member Avatar for nmakes

I'm trying to make a simple linked list example. I am using the dynamic method of memory allocation. #include <iostream.h> struct node { int INSTRUCTION; node * next; node() { next = NULL; INSTRUCTION = 0; } void setnext(node *P) { next = P; } void DELETE() { delete this; …

Member Avatar for nmakes
0
137
Member Avatar for sireiz

What is the best and efficient way of redirecting streams from a parent process to child process. There are a number of ways i found out like boost.process, fork() and createprocess(). But what is the best way for windows?

Member Avatar for sireiz
0
253
Member Avatar for kal_crazy
Member Avatar for nikzer

#include <cstdlib> #include <conio.h> #include <iostream> #include <stdlib.h> using namespace std; int main(int argc, char *argv[]) { int x,ctr; cout<< "Enter a day: "; cin>> x; for (ctr=x;x>0;x--) for (ctr=1;ctr<=12;ctr++) { switch (x) { case 1:cout<< "On the first day of Christmas\nMy true love sent to me...\n"; break; case 2:cout<< …

Member Avatar for Gonbe
1
225
Member Avatar for Prem_1

I want to calculate the formula in C++ program. Put all 5 formula inside the program but just run 1 formula only. For example, run the current ratio formula only. If you want another formula then just adjust the coding. Then the second formula will run. Just adjust inside only. …

Member Avatar for DavidB
0
565
Member Avatar for manel1989

hello; how to access to a control of a form from another form? example datagridview

Member Avatar for Ancient Dragon
0
243
Member Avatar for hsc852

Hello everybody. I am seeking help on how to save 3 output images into a specific path after filter by 3 different mask size e.g. 3x3, 5x5 and 7x7 mask. My program is in C:\Cpp\Project\, I wish to save those output images inside "filter" folder with path in C:\Cpp\Project\filter. Thus, …

Member Avatar for deceptikon
0
396
Member Avatar for ektubbe

Inline Code Example HereHi guys, below is a function which converts ebcdic to ascii and it works for a buffer, i need to modify it in accordance to a file,which i am unable to do as i am not very good with C, tried my luck everywhere but did not …

Member Avatar for Ancient Dragon
0
278
Member Avatar for sireiz

I want to know how this function is working. I used qsort() function to sort the integers in an array and i found this compare() function on internet. It worked perfectly well but i cannot understand how is it working and what's its logic. Any help? int compare (const void …

Member Avatar for sepp2k
0
2K
Member Avatar for amirul_1

Hellow...How to count and sum even and odd integers from a sequence of integers..?

Member Avatar for MandrewP
0
116
Member Avatar for winky

[LIST=1] [/LIST]Hello again :), I am writing a code that will recursively write a string in reverse. The problem is in my recursiveReverse function. I feel like the idea is right, but the implementation is incorrect. My thought process was that I could start the loops at the beginning and …

Member Avatar for Joshua_3
0
1K

The End.