49,761 Topics
| |
Hello This program uses a dynamic array , which shifts x elements to the right. the program works, but my question is whether i defined shift_elements(int index,int pl) in the right way or is there a different way to do the function in the main() thank you [CODE]class MyArray { … | |
I have an alpha beta interface and have implemented a tic tac toe class from it. For some reason my AI tends to occasionally make stupid moves (such as making a fork rather than blocking a 2 in a row) I was wondering if anybody can see where I went … | |
hi.. im trying to get a line using getline() function from an input file, but it is ignoring end line character. is there any other function that would including the end line character? btw, im not allowed to use something like aString+'\n' thanks in advance~ | |
Okay, I am receiving scores and names from a text file to calculate averages. 1 line contains a name, the next line will contain 3 scores separated by spaces. Looks like this: Tom Babidal 93 94 99 Billy Marks 13 98 56 etc etc My code seems to read the … | |
can any one give any idea which compiler i will use which work in docs.i dont want to use microsoft visual c++ | |
I'm writing a program that is supposed to search an array between the values of -1000 and 1000, as well as sort it using the 3 different sorts (bubble, insertion, selection). I have the searching part done, but my bubble sort isn't working right. It seems right in my head, … | |
my problem is the Point plus(Point). how should I declare it and all that. [CODE]// point.h -- This creates a point with both x and y of type integer #include <iostream> using namespace std; template<typename T> class Point { private: T x; T y; public: Point(T,T); Point(); void set_x(T); void … | |
Given the following C++ code and input (Figure 1): struct POINT{ int x; int y; }; struct SHAPE{ struct POINT pt1; struct POINT pt2; struct POINT pt3; struct POINT pt4; }; void setSHAPE(struct SHAPE &); int calcArea(struct SHAPE); void main() struct SHAPE RECTANGLE; //your code starts here }//your code ends … | |
Hi! I've been having this problem recently: I wrote this code which, practically, reads lines of text from a text file (e.g. Microsoft Notepad file) and stores them into a vector. Each line has three parts: the product code, the product amount and the product name. The user is offered, … | |
what does the following code means in Qt programming.. QDialogButtonBox::Ok why are we using QDialogButtonBox:: . | |
Hey, I was about to get started just making a simple text game and was wondering how to make it so the game came up in a different window other than the CMD? Like how can I make it come up in say.. A 400x200 Window? Where I could customize … | |
For part of a programming that I'm writing, I want to generate random numbers between the range of -1000 and 1000. My teacher never spent much time on the rand function, and I'm not quite sure how to specify a range like that. Any help would be greatly appreciated. Thanks! | |
Someone please tell me the difference between 0 and '\0' and NULL. I thought I knew it! 0 and NULL is the same thing "Essentially".. '\0' is a null terminator for a string.. It's just sometimes when I convert a string to char array and do some encryption on it, … | |
can anyone give any link to download "programming with c++" by "d ravichandran" | |
I am trying to create a prime factorization c++ program, and halted immediately by this "else" error. I would really appreciate some assistance with my coding. I am new to c++, so I am just getting used to the rules. Here is what I have so far: [CODE]#include <iostream> using … | |
hi, my name is vic...i got one problem cannot fix....output for the number of times each of the tasks has been invoked...i run 3 times each of the tasks but the output always is this program has run 1 times..... [CODE]#include<stdio.h> #include<stdlib.h> void doTaskA(){ printf("Start of Task A\n\n"); int input_1, … | |
im terrible at c++, absolute beginner, i can start and end programme writing, just the functions im awful at, for this one below, what is the ,to say, middle part of the programme Using <cmath> function pow(x,x), find x^x in small steps of 0.5 starting at x = -1 to … | |
Hi all, My code for a function to count words is posted below, and the only error that appears when I build it in my compiler is that char present is uninitialized. My program will not run with this uninitialized value. I've been searching for info on how to initialize … | |
I took curl-7.24.0.zip from their site [url]http://curl.haxx.se/download.html[/url] and compiled libcurl ... i've got only the .lib Now, what to do ? EDIT : Im also needing a simple example on how to retrieve a website content ( blablabla.com?uid=1 ) in a char using wininet. I tried [code] HINTERNET hINet, hFile; … | |
[CODE] public: Mixed(int whole = 0); Mixed(int whole, int num, int denom); bool SetFraction(int n, int d); bool SetFraction(int n, int d=1); bool SetValue(int w, int n, int d); int getWhole(); int getNumerator(); int getDenominator(); void showFraction(); double Evaluate(); void Simplify(); void ToFraction(); Mixed& operator++(); //prefix increment Mixed operator++(int); //postfix … | |
See I created a program that accepts three values from the user to be arranged as a linked list(ascending order). After it asks a number, it displays the content of the list. The output is like this: [CODE]Enter number: 6 List value: 6 Enter number: 4 List value: 4 6 … | |
I have put together some code for a homework assignment and I have almost got it working. There are a few key items that are missing or not fully functional and I am fresh out of ideas on how to attack it. The code is to take 9 digits/integers from … | |
Can anyone help me by giving out a complete tutorial on the step by step way a connecting to a database using C++ ? | |
Hello all . I have just started using the gcnew instead of new for the public ref class, that i have needed to learn for windows forms. I have a problem that shouldn't be as difficult as it is. I have a class that i made called vector2 . It … | |
ok, i need help with changing the state of a process. So far my struct Process has an integer which contains the priority and a pointer next which points to another process, and i need to add a state so that every time i call the function insert() it would … | |
#include<stdio.h> int ways(int n,int m) { if(n=0) return m; if(m=0) return n; else ways(n,m)=ways(n-1,m)+ways(n,m-1); //there is an error here.pls explain// return ways(n,m); } int main() { int a,b; printf("give a and b"); scanf("%d %d",&a,&b); ways(a,b); printf("the no of ways from (%d,%d) to (0,0) are %d",a,b,ways(a,b)); return 0; } what is … | |
I have difficulty to declare the following type of array. 1/36, (one divided 36) 2/36, (two dvided 36) 3/36, 4/36, 5/36, 6/36, 5/36, 4/36, 3/36, 2/36, 1/36 [CODE]double exptRoll [arraySize] = { 1/36, 2/36, 3/36, 4/36, 5/36, 6/36, 5/36, 4/36, 3/36, 2/36, 1/36}; [/CODE] This doesn't work. Can someone tell … | |
How can I set the [U]Actual rolls[/U] and [U]Expected rolls[/U] to no decimal, and [U]Actual percentage[/U] and [U]Expected percentage[/U] to 1 decimal plus a % symbol ? [url]http://images.plurk.com/a2f077138ef908ce71f46b08909c998d.jpg[/url] [CODE] cout << "Point" << setw(17) << "Number of Rolls" << setw(17) << "Actual Percent" << setw(17) << "Expected Rolls" << setw(17) … | |
Assignment 2-a: Program 1: You are given the task of determining the download speed of an Internet connection. You decide to use two files whose size is known (in Kilobytes-KB). You will download the two different files, and record the time it takes to download each one. You will determine … | |
I'm making a dice program that calculates the statistics such as actual percentage, expected rolls and expected percentage and so on. I'm having a difficulty on the Pseudo random number generation. With two dice, the mim. sum of the dice is 2, not 1. There is something wrong with my … |
The End.