Forum: C++ Sep 5th, 2009 |
| Replies: 1 Views: 239 ok...i'm having trouble changing a value in a array into a character
void gameon(int **game,int &size,int &x,int &y,int &score1,int &score2)
{
int i,j,num1,num2;
cout<<"Please enter a... |
Forum: C++ Aug 24th, 2009 |
| Replies: 7 Views: 273 hmmm....ic...thanks for the info....
do you mind explaining the code...i don't quite get it...
int **game ; <---------This line
int size = 0;
cin >> size;
game... |
Forum: C++ Aug 24th, 2009 |
| Replies: 7 Views: 273 okay, i understand...juz wanna ask...is it possible to create a huge array then minimize the array according to the users input...
for example
game[500][500];
then minimize from there... |
Forum: C++ Aug 24th, 2009 |
| Replies: 7 Views: 273 hey...i'm having trouble passing a user define 2d array...
void genrand(int &game[][],int &size)
{
int i,j;
for(i=0;i<size;i++)
{
for(j=0;size;j++)
{
... |
Forum: C++ Aug 8th, 2009 |
| Replies: 9 Views: 296 thank u for your help guys...really appreciate them...
i manage to solve them...i did something like this
srand(1);
{
row1col1=((rand()%4)+1);
row3col1=((rand()%4)+1);
... |
Forum: C++ Aug 8th, 2009 |
| Replies: 9 Views: 296 can somebody help me with this....i'm creating a 4X4 sudoku program...with 8 auto-generating numbers and 8 user inputs...i used the random number function rand() but the numbers keep on... |
Forum: C++ Aug 7th, 2009 |
| Replies: 1 Views: 212 I'm juz wondering how do I send a single value to a 8-parameter function...
void enterdata1(int &row1col2)
{
cout<<"Please enter the number for Row 1-Columm 2"<<endl;
cin>>row1col2;
... |
Forum: C++ Oct 10th, 2008 |
| Replies: 1 Views: 274 hello....i'm juz wondering is there any that generates UML diagrams such as sequence diagram,activity diagram n more once i enter my source code??...help me pls
most of the software i use only... |