- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
I want to live in a subterranean house in the middle of the woods with a direct line to the internet backbone. The woods above my house would be undisturbed so no one would know I'm there.
I am tryint to convert my c++ coed that solves a HiQ puzzle with a depth first search into c# so that i can play around with a gui for it. I have tried a few different approaches but the whole idea of everything being inside of a class is …
I trying to get dynamic memory allocation to work but i cant seem to get it right. [CODE=fortran] program test implicit none integer i,j, error,size real, dimension(2), allocatable :: inputMatrix print *, "Input the number of equations (and variables): " read *, size allocate (inputMatrix(size,size), stat = error) print *, …
so... i have been looking at this for a good 20 minutes and it makes no sense. when i compile this simple linked list implementation, it gves me this compile error. obj\Debug\Projects\LinkedList\LinkedList.o||In function `_ZN4nodeC1Ev':| obj\Debug\Projects\LinkedList\node.o:C:\Program Files (x86)\CodeBlocks\MinGW\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\include\c++\3.4.5\bits\locale_facets.tcc|2497|first defined here| ||=== Build finished: 1 errors, 0 warnings ===| any ideas what …
Im not sure where to throw this topic so i figured this was as good a place as any. My mom got an email from a friend of hers containing a picture in .jpg format and then 2 files both with the same name"Amazing" with .bin and .dat file extensions. …
have you stated at all? Post the code you have and we may have some suggestions.
1: Where did k come from? i don't see it declared anywhere. 2: you are declaring i twice...that could cause some problems. 3: What exactly are you trying to do? Add code tags
there are several things still wrong with your code. take a look at this [CODE=cplusplus] for(int i=0;i>=1;i++) { cin>>ARR [i][0]; } [/CODE] here i is initialized to 0 but the for loop condition segment requires a value of i that is greater or equal to 1. this for loop wont …
I am working on a basic linked list program and i seem to be having problems with the getline() function. I try to input data in to my struct: [CODE] cout<<"\n\nPlease enter the name of the student: "; getline(cin, temp->name); cout<<"Please enter "<<temp->name<<"'s class: "; cin>>temp->grade cout<<"Please enter "<<temp->name<<"'s GPA: …
Hi, im working on a small console app that among other things calculates the mean value of all rows and columns of a matrix. I want to incorporate the mean symbol (x with an over score) into the out put but the symbol isn't included in the ASCII chart, any …
The End.
shindu