473,498 Members | 1,639 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C problem, likely simple but I can't see it!

sam
hi, i am new to C/C++ and have just finished a program based on the UK
national lottery, where you enter 6 numbers, six are generated by the
computer and there are appropriate messages and a compare function to decide
your winnings. I am using Microsoft's C++ version 6 standard, the program
is as follows:

/* * * * * * * * * * * * * * * * * * * *
* *
* Lottery Simulation By Sam Halston *
* *
* * * * * * * * * * * * * * * * * * * * */


#include <stdio.h>
#include <stdlib.h>
#include <time.h>

#define NMAX 6
int a[NMAX];
int b[NMAX];
void getIntArray(int x[]);
void bubbleSort(int x[]);
void printArrays(int x[], int y[]);
void getrandomarray(int x[]);
void winnings();
int wins = 0;

int main(void) {
//welcome
printf("\t Welcome To The National Lottery!\n");
printf("\tPlease Enter Six Whole Numbers Between 1 And 49\n\n");

getIntArray(a);
getrandomarray(b);
bubbleSort(a);
bubbleSort(b);
printf("Your Numbers In Numerical Order Are: \n");
printArrays(a, b);
winnings();
return 0;
}


void getIntArray(int x[])

{
int n = 0;
int temp;

here://I know goto loops are not liked in C, but this is the best way to
achieve this feature in my opinion!
;

do {
printf("Choose A Number\n");
scanf("%d", &temp);
if (temp==0) break;
if (n==5)
{
printf("All Six Numbers Have Been Entered, Press Zero To Confirm\n");

}

if ((temp<01) || (temp>49))
{
printf("%s\n", "Sorry, That Is An Unacceptable Number. Please Re Enter");
goto here;
}

if (temp==a[0])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[1])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[2])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[3])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[4])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[5])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}

else
a[n++] = temp;
}while (1);
}
void bubbleSort(int x[])
/* It sorts in non-decreasing order the six positions of a. It uses
* a technique called the bubble sort method.
*/
{
int lcv;
int limit = NMAX-1;
int temp;
int lastChange;

while (limit) {
lastChange = 0;
for (lcv=0;lcv<limit;lcv++)

if (x[lcv]>x[lcv+1]) {
temp = x[lcv];
x[lcv] = x[lcv+1];
x[lcv+1] = temp;
lastChange = lcv;
}
limit = lastChange;
}
}
void printArrays(int x[], int y[])

/* These values are printed out, six per line. */
{
//print user array
for (int i=0; i<NMAX;)
{
printf("\t%d ", x[i++]);
if (i%6==0)
printf("\n");
}
printf("\n");

printf("The Drawn Numbers In Numerical Order Are: \n");
//print random array

for (i=0; i<NMAX;){
printf("\t%d ", y[i++]);
if (i%6==0)
printf("\n");
}
printf("\n");

}

void getrandomarray(int x[])
{

//make random numbers
srand((unsigned int)time((time_t *)NULL));

for (int i=0; i<NMAX; i++)
{
x[i] = (rand()%49)+1; //This safety feature makes the
generator regenerate should any
for(int j=0; j<i; j++) //of its numbers be the same as previous
numbers.
{
if(x[i] == x[j])
i--;
}
}

}
void bubblesort(int x[])
/* It sorts in non-decreasing order the first 6 positions of b. It uses
* the bubble sort method.
*/
{
int lcv;
int limit = NMAX-1;
int temp;
int lastChange;

while (limit)
{
lastChange = 0;
for (lcv=0;lcv<limit;lcv++)
{
/* Notice that the values in positions LIMIT+1 .. in
* their final position, i.e. they are sorted right */
if (a[lcv]>a[lcv+1])
{
temp = x[lcv];
x[lcv] = x[lcv+1];
x[lcv+1] = temp;
lastChange = lcv;
}
limit = lastChange;
}

}
}
void winnings()
{

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
}
}

if(wins==0)
{
printf("You Haven't Matched Any Numbers, Sorry\n");
return;
}
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}

}
if(wins==2)
{
printf("You Have Matched Two Numbers, Sorry\n");
return;
}
if(wins==3)
{
printf("You Have Matched 3 Numbers. Well Done, You Have Won £10\n");
return;
}
if(wins==4)
{
printf("You Have Matched 4 Numbers. Well Done, You Have Won £500\n");
return;
}
if(wins==5)
{
printf("You Have Matched 5 Numbers. Well Done, You Have Won £300,000!\n");
return;
}
if(wins==6)
{
printf("You Have Matched 3 Numbers. Congratulations, You Have Won
£5,000,000!!\n");
return;
}

}
ok-so i guess its a mess to most of you, it compiles and runs no bother,
just doesnt give a correct readout at the end of how many numbers have
matched! iv looed at this for 4 days now, seems to me that only one or no
numbers are being matched almost as if its doing a true and false as to
whether any numbers match. trouble is, the lottery rules are 0, 1 or 2
numbers matched = £0, 3 =£10, 4=£500, 5=£300,000, 6= £5,000,000. any quick
fixes or suggestions as to an alternative end will be greatly appreciated,
but if i could stick to this structure it would be good as i am trying hard
to understand even what i've written! did anyone find this or am i just
doomed to not be a programmer!?

thanks in advance

sam
Jul 22 '05 #1
10 1380

"sam" <sam@home> wrote in message
news:q4********************@brightview.com...
hi, i am new to C/C++ and have just finished a program based on the UK
national lottery, where you enter 6 numbers, six are generated by the
computer and there are appropriate messages and a compare function to decide your winnings. I am using Microsoft's C++ version 6 standard, the program
is as follows:

/* * * * * * * * * * * * * * * * * * * *
* *
* Lottery Simulation By Sam Halston *
* *
* * * * * * * * * * * * * * * * * * * * */


#include <stdio.h>
#include <stdlib.h>
#include <time.h>
in C++, these should be

#include <cstdio>
#include <cstdlib>
#include <ctime>

#define NMAX 6
int a[NMAX];
int b[NMAX];
void getIntArray(int x[]);
void bubbleSort(int x[]);
void printArrays(int x[], int y[]);
void getrandomarray(int x[]);
void winnings();
int wins = 0;

int main(void) {
//welcome
printf("\t Welcome To The National Lottery!\n");
printf("\tPlease Enter Six Whole Numbers Between 1 And 49\n\n");

getIntArray(a);
getrandomarray(b);
bubbleSort(a);
bubbleSort(b);
printf("Your Numbers In Numerical Order Are: \n");
printArrays(a, b);
winnings();
return 0;
}
good short program. Often newcomers make hidiously long programs, good one!


void getIntArray(int x[])

{
int n = 0;
int temp;

here://I know goto loops are not liked in C, but this is the best way to
achieve this feature in my opinion!
;

do {
printf("Choose A Number\n");
scanf("%d", &temp);
if (temp==0) break;
if (n==5)
{
printf("All Six Numbers Have Been Entered, Press Zero To Confirm\n");

if the last number is entered invalid, then you are asking them to press
zero, which is invalid, infinite loop!

}

if ((temp<01) || (temp>49))
{
printf("%s\n", "Sorry, That Is An Unacceptable Number. Please Re Enter");
goto here;
}

if (temp==a[0])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[1])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
why didnt you do:
for (int loop=0; loop<NMAX; ++loop)
if (temp==a[loop])
// ...

For two reasons. One its easier to read as its far shorter. Two, its more
maintainable. What would you do if you wanted to do a lottery with 8
numbers? Or consider 1000, what would you do then? (i know its extreme, bit
its meant to make a point)

if (temp==a[2])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[3])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[4])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[5])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}

else
a[n++] = temp;
}while (1);
}
void bubbleSort(int x[])
/* It sorts in non-decreasing order the six positions of a. It uses
* a technique called the bubble sort method.
*/
{
int lcv;
int limit = NMAX-1;
int temp;
int lastChange;

while (limit) {
lastChange = 0;
for (lcv=0;lcv<limit;lcv++)

if (x[lcv]>x[lcv+1]) {
temp = x[lcv];
x[lcv] = x[lcv+1];
x[lcv+1] = temp;
lastChange = lcv;
}
limit = lastChange;
}
}
there are shorter ways of doing this, e.g.

for (int i=0; i<NMAX; ++i)
for (int j=i; j<NMAX; ++j)
{
// compare and swap items
}



void printArrays(int x[], int y[])

/* These values are printed out, six per line. */
{
//print user array
for (int i=0; i<NMAX;)
{
printf("\t%d ", x[i++]);
if (i%6==0)
this prints a newline after the first number only, why? Again, you should
use NMAX for maintainability
printf("\n");
}
printf("\n");

printf("The Drawn Numbers In Numerical Order Are: \n");
//print random array

for (i=0; i<NMAX;){
printf("\t%d ", y[i++]);
if (i%6==0)
printf("\n");
}
printf("\n");

}

void getrandomarray(int x[])
{

//make random numbers
srand((unsigned int)time((time_t *)NULL));

for (int i=0; i<NMAX; i++)
{
x[i] = (rand()%49)+1; //This safety feature makes the
generator regenerate should any
the rand() function requires you to seed the random number generator, do
something like
srand(time(NULL)); // seed rand gen based on time

also, the lower bits returned by rand() are not very random, consider using
something like:
rand() / (RAND_MAX / 49);

for(int j=0; j<i; j++) //of its numbers be the same as previous
numbers.
{
if(x[i] == x[j])
i--;
}
}

}
void bubblesort(int x[])
this has already been declared!
/* It sorts in non-decreasing order the first 6 positions of b. It uses
* the bubble sort method.
*/
{
int lcv;
int limit = NMAX-1;
int temp;
int lastChange;

while (limit)
{
lastChange = 0;
for (lcv=0;lcv<limit;lcv++)
{
/* Notice that the values in positions LIMIT+1 .. in
* their final position, i.e. they are sorted right */
if (a[lcv]>a[lcv+1])
{
temp = x[lcv];
x[lcv] = x[lcv+1];
x[lcv+1] = temp;
lastChange = lcv;
}
limit = lastChange;
}

}
}
void winnings()
{

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
}
}
this will only work if the numbers are in the same index of the array, e.g.
if you have
1,2,3,4,5,6
and
2,3,4,5,6,7

then this will report no numbers the same! Even though 5 are the same

you need to use two loops to do this.

if(wins==0)
{
printf("You Haven't Matched Any Numbers, Sorry\n");
return;
}
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}

}
if(wins==2)
{
printf("You Have Matched Two Numbers, Sorry\n");
return;
}
if(wins==3)
{
printf("You Have Matched 3 Numbers. Well Done, You Have Won £10\n");
return;
}
if(wins==4)
{
printf("You Have Matched 4 Numbers. Well Done, You Have Won £500\n");
return;
}
if(wins==5)
{
printf("You Have Matched 5 Numbers. Well Done, You Have Won £300,000!\n"); return;
}
if(wins==6)
{
printf("You Have Matched 3 Numbers. Congratulations, You Have Won
£5,000,000!!\n");
return;
}
i would use something like:
static char[NMAX][]sWins = {"£0", "£0", "£10", "£300,000", "£5,000,000"};
printf("You have won %s", sWins[wins]);

which I am sure you agree, is far neater

}
ok-so i guess its a mess to most of you, it compiles and runs no bother,
just doesnt give a correct readout at the end of how many numbers have
matched! iv looed at this for 4 days now, seems to me that only one or no
numbers are being matched almost as if its doing a true and false as to
whether any numbers match. trouble is, the lottery rules are 0, 1 or 2
numbers matched = £0, 3 =£10, 4=£500, 5=£300,000, 6= £5,000,000. any quick fixes or suggestions as to an alternative end will be greatly appreciated,
but if i could stick to this structure it would be good as i am trying hard to understand even what i've written! did anyone find this or am i just
doomed to not be a programmer!?

thanks in advance

sam


you have made a good attempt. The program seems well structured apart from
your 'goto'. Instead of the goto have your structure do something like:

int ValidNums=0;
while(1)
{
// get a number
// check valid, if valid then ValidNums++
if (ValidNums == NMAX-1)
break;
}

but consider a quit option to allow the user to quit gracefully.
Also, scanf is not brilliant for getting numbers, try typing a letter and
find out! In C, I used to do scanf("%s"); and then use strtol() to
check/convert it to a number. However there are better C++ solutions that
somebody may point out.

Hope this helps
Allan
Jul 22 '05 #2
sam writes:
hi, i am new to C/C++ and have just finished a program based on the UK
national lottery, where you enter 6 numbers, six are generated by the
computer and there are appropriate messages and a compare function to decide your winnings. I am using Microsoft's C++ version 6 standard, the program
is as follows:

/* * * * * * * * * * * * * * * * * * * *
* *
* Lottery Simulation By Sam Halston *
* *
* * * * * * * * * * * * * * * * * * * * */


#include <stdio.h>
#include <stdlib.h>
#include <time.h>

#define NMAX 6
int a[NMAX];
int b[NMAX]; <snip>

Try to use more descriptive names than a and b. One is a client and the
other is the government, is it not? It would be easier to help if these had
some meaning.
void getIntArray(int x[]);
void bubbleSort(int x[]);
void printArrays(int x[], int y[]);
void getrandomarray(int x[]);
void winnings();
int wins = 0;

int main(void) {
// welcome
printf("\t Welcome To The National Lottery!\n");
printf("\tPlease Enter Six Whole Numbers Between 1 And 49\n\n");

getIntArray(a);
getrandomarray(b);
bubbleSort(a);
bubbleSort(b);
printf("Your Numbers In Numerical Order Are: \n");
printArrays(a, b);


Are you happy with the results of that print? Knowing the answer to that
divides the problem into two major "hunks".

I scanned around but didn't spot anything noteworthy. I suppose there may
well be an answer by the time I post this.

<snip>
Jul 22 '05 #3
I've added som comments to your code, hope that helps.

/Andreas
"sam" <sam@home> skrev i meddelandet
news:q4********************@brightview.com...
hi, i am new to C/C++ and have just finished a program based on the UK
national lottery, where you enter 6 numbers, six are generated by the
computer and there are appropriate messages and a compare function to decide your winnings. I am using Microsoft's C++ version 6 standard, the program
is as follows:

/* * * * * * * * * * * * * * * * * * * *
* *
* Lottery Simulation By Sam Halston *
* *
* * * * * * * * * * * * * * * * * * * * */


#include <stdio.h>
#include <stdlib.h>
#include <time.h>

#define NMAX 6
int a[NMAX];
int b[NMAX];
You definately should initiate these, like
init a[NMAX] = null;
or so.
void getIntArray(int x[]);
void bubbleSort(int x[]);
void printArrays(int x[], int y[]);
void getrandomarray(int x[]);
void winnings();
int wins = 0;

int main(void) {
//welcome
printf("\t Welcome To The National Lottery!\n");
printf("\tPlease Enter Six Whole Numbers Between 1 And 49\n\n");

getIntArray(a);
getrandomarray(b);
bubbleSort(a);
bubbleSort(b);
printf("Your Numbers In Numerical Order Are: \n");
printArrays(a, b);
winnings();
return 0;
}


void getIntArray(int x[])

{
int n = 0;
int temp;

here://I know goto loops are not liked in C, but this is the best way to
achieve this feature in my opinion!
;

do {
printf("Choose A Number\n");
scanf("%d", &temp);
if (temp==0) break;
if (n==5)
{
printf("All Six Numbers Have Been Entered, Press Zero To Confirm\n");
}

if ((temp<01) || (temp>49))
{
printf("%s\n", "Sorry, That Is An Unacceptable Number. Please Re Enter");
goto here;
}

if (temp==a[0])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[1])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[2])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[3])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[4])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}
if (temp==a[5])
{
printf("%s\n", "Sorry, You Have Already Selected That Number. Please Make
Another Choice");
goto here;
}

else
a[n++] = temp;
}while (1);
}
void bubbleSort(int x[])
/* It sorts in non-decreasing order the six positions of a. It uses
* a technique called the bubble sort method.
*/
{
int lcv;
int limit = NMAX-1;
int temp;
int lastChange;

while (limit) {
lastChange = 0;
for (lcv=0;lcv<limit;lcv++)

if (x[lcv]>x[lcv+1]) {
temp = x[lcv];
x[lcv] = x[lcv+1];
x[lcv+1] = temp;
lastChange = lcv;
}
limit = lastChange;
}
}
void printArrays(int x[], int y[])

/* These values are printed out, six per line. */
{
//print user array
for (int i=0; i<NMAX;)
{
printf("\t%d ", x[i++]);
if (i%6==0)
printf("\n");
}
printf("\n");

printf("The Drawn Numbers In Numerical Order Are: \n");
//print random array

for (i=0; i<NMAX;){
printf("\t%d ", y[i++]);
if (i%6==0)
printf("\n");
}
printf("\n");

}

void getrandomarray(int x[])
{

//make random numbers
srand((unsigned int)time((time_t *)NULL));

for (int i=0; i<NMAX; i++)
{
x[i] = (rand()%49)+1; //This safety feature makes the
generator regenerate should any
for(int j=0; j<i; j++) //of its numbers be the same as previous
numbers.
{
if(x[i] == x[j])
i--;
}
}

}
void bubblesort(int x[])
/* It sorts in non-decreasing order the first 6 positions of b. It uses
* the bubble sort method.
*/
{
int lcv;
int limit = NMAX-1;
int temp;
int lastChange;

while (limit)
{
lastChange = 0;
for (lcv=0;lcv<limit;lcv++)
{
/* Notice that the values in positions LIMIT+1 .. in
* their final position, i.e. they are sorted right */
if (a[lcv]>a[lcv+1])
{
temp = x[lcv];
x[lcv] = x[lcv+1];
x[lcv+1] = temp;
lastChange = lcv;
}
limit = lastChange;
}

}
}
void winnings()
{

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
}
}

You forgot to end the first for-loop! Add one '}'!
if(wins==0)
{
printf("You Haven't Matched Any Numbers, Sorry\n");
return;
}
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}

}
The above '}' shouldn't be there!
if(wins==2)
{
printf("You Have Matched Two Numbers, Sorry\n");
return;
}
if(wins==3)
{
printf("You Have Matched 3 Numbers. Well Done, You Have Won £10\n");
return;
}
if(wins==4)
{
printf("You Have Matched 4 Numbers. Well Done, You Have Won £500\n");
return;
}
if(wins==5)
{
printf("You Have Matched 5 Numbers. Well Done, You Have Won £300,000!\n"); return;
}
if(wins==6)
{
printf("You Have Matched 3 Numbers. Congratulations, You Have Won
£5,000,000!!\n");
return;
}

}
ok-so i guess its a mess to most of you, it compiles and runs no bother,
just doesnt give a correct readout at the end of how many numbers have
matched! iv looed at this for 4 days now, seems to me that only one or no
numbers are being matched almost as if its doing a true and false as to
whether any numbers match. trouble is, the lottery rules are 0, 1 or 2
numbers matched = £0, 3 =£10, 4=£500, 5=£300,000, 6= £5,000,000. any quick fixes or suggestions as to an alternative end will be greatly appreciated,
but if i could stick to this structure it would be good as i am trying hard to understand even what i've written! did anyone find this or am i just
doomed to not be a programmer!?

thanks in advance

sam

Jul 22 '05 #4
You definately should initiate these, like
init a[NMAX] = null;
or so.

If you mean initialize, they are by default. What is

init a[NMAX] = null;

Suppose to mean? Do you mean:

int a[NMAX] = {0};

?


Jul 22 '05 #5

"Xenos" <do**********@spamhate.com> skrev i meddelandet
news:c7*********@cui1.lmms.lmco.com...
You definately should initiate these, like
init a[NMAX] = null;
or so.

If you mean initialize, they are by default. What is

init a[NMAX] = null;

Suppose to mean? Do you mean:

int a[NMAX] = {0};

?


Yes, i'm sorry. It was a long time ago since i coded C.

/Andreas
Jul 22 '05 #6
On Fri, 7 May 2004 18:55:04 +0100, "sam" <sam@home> wrote:
hi, i am new to C/C++ and have just finished a program based on the UK
national lottery, where you enter 6 numbers, six are generated by the
computer and there are appropriate messages and a compare function to decide
your winnings. I am using Microsoft's C++ version 6 standard, the program
is as follows:

"Before":
void winnings()
{

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
}
}

if(wins==0)
{
printf("You Haven't Matched Any Numbers, Sorry\n");
return;
}
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}

}
if(wins==2)
{
printf("You Have Matched Two Numbers, Sorry\n");
return;
}

...
"After":

void winnings()
{
printf("a: ");
for (int i = 0; i < 6; i++)
printf("%d ", a[i]);
printf("\nb: ");
for (int i = 0; i < 6; i++)
printf("%d ", b[i]);

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
}
}

if(wins==0)
{
printf("You Haven't Matched Any Numbers, Sorry\n");
return;
}
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}

}
if(wins==2)
{
printf("You Have Matched Two Numbers, Sorry\n");
return;
}
// ....

Notice anything different? ;-)
-leor
--
Leor Zolman --- BD Software --- www.bdsoft.com
On-Site Training in C/C++, Java, Perl and Unix
C++ users: download BD Software's free STL Error Message Decryptor at:
www.bdsoft.com/tools/stlfilt.html
Jul 22 '05 #7
"sam" <sam@home> wrote in message
news:q4********************@brightview.com...
hi, i am new to C/C++ and have just finished a program based on the UK
national lottery, where you enter 6 numbers, six are generated by the
computer and there are appropriate messages and a compare function to decide your winnings. I am using Microsoft's C++ version 6 standard, the program
is as follows:

<snip>

void winnings()
{

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
A "break;" would work well here, as you are done processing once you find
the match, since they are sorted.

}
}

You need a } HERE, it was moved down below the following...
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}

}
....to HERE. So fix that.

Also:
if(wins==6)
{
printf("You Have Matched 3 Numbers. Congratulations, You Have Won
£5,000,000!!\n");
return;
}
wins == 6, but the message says 3.

any quick
fixes or suggestions as to an alternative end will be greatly appreciated,
but if i could stick to this structure it would be good as i am trying hard to understand even what i've written! did anyone find this or am i just
doomed to not be a programmer!?


Well.... the code, in general, sucks, but then we all start somewhere. ;-)

--
Mabden

Jul 22 '05 #8
sam
thanks for the help, it's looking a lot tidier now! i still cant get the
numbers to compare properly at the end though, only 0 and 1 numbers works,
as if im still doing a true or false comparison, why is it so hard to
compare numbers!? im trying to get at:

if the first number from the user inputted array equals or is equivalent to
any of the numbers from the random generator, add 1.

if the second.. etc

then we should have up to 5 (6) matches

i thought of covering all possible matches one at a time, ie if a[0] = b[0],
b[1] etc, but that would take ages and won't look so good!
Jul 22 '05 #9
sam wrote:

thanks for the help, it's looking a lot tidier now! i still cant get the
numbers to compare properly at the end though, only 0 and 1 numbers works,
as if im still doing a true or false comparison, why is it so hard to
compare numbers!?


It isn't.
Let me show you something. The beauty of consistent code indentation and how
it helps to identify some type of bugs.

Lets look at your winnings function(), but this time reformatted such
that the indentation is consistent, correct and stands out a little bit more
by using 2 spaces instead of just 1

void winnings()
{

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
}
}

if(wins==0)
{
printf("You Haven't Matched Any Numbers, Sorry\n");
return;
}
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}
}

if(wins==2)
{
printf("You Have Matched Two Numbers, Sorry\n");
return;
}
if(wins==3)
{
printf("You Have Matched 3 Numbers. Well Done, You Have Won £10\n");
return;
}
if(wins==4)
{
printf("You Have Matched 4 Numbers. Well Done, You Have Won £500\n");
return;
}
if(wins==5)
{
printf("You Have Matched 5 Numbers. Well Done, You Have Won £300,000!\n");
return;
}
if(wins==6)
{
printf("You Have Matched 3 Numbers. Congratulations, You Have Won £5,000,000!!\n");
return;
}
}

Do you notice something?
The if-s handling the case for 0 and 1 are not at the same indentation level
then the other cases! Also the if-s for cases 0 and 1 are at the complete
wrong indentation level. You need to compare *all* numbers, not just a[0] with
all b[j] to decide if there are 0 or 1 matches.

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 22 '05 #10
"Karl Heinz Buchegger" <kb******@gascad.at> wrote in message
news:40***************@gascad.at...
sam wrote:

thanks for the help, it's looking a lot tidier now! i still cant get the
numbers to compare properly at the end though, only 0 and 1 numbers works, as if im still doing a true or false comparison, why is it so hard to
compare numbers!?
It isn't.
Let me show you something. The beauty of consistent code indentation and

how it helps to identify some type of bugs.

Lets look at your winnings function(), but this time reformatted such
that the indentation is consistent, correct and stands out a little bit more by using 2 spaces instead of just 1

void winnings()
{

for(int i=0; i<6; i++)
{
for(int j=0; j<6; j++)
{
if(a[i]==b[j])
{
wins++;
}
}

if(wins==0)
{
printf("You Haven't Matched Any Numbers, Sorry\n");
return;
}
if(wins==1)
{
printf("You Have Matched One Number, Sorry\n");
return;
}
}

if(wins==2)
{
printf("You Have Matched Two Numbers, Sorry\n");
return;
}
if(wins==3)
{
printf("You Have Matched 3 Numbers. Well Done, You Have Won £10\n");
return;
}
if(wins==4)
{
printf("You Have Matched 4 Numbers. Well Done, You Have Won £500\n");
return;
}
if(wins==5)
{
printf("You Have Matched 5 Numbers. Well Done, You Have Won £300,000!\n"); return;
}
if(wins==6)
{
printf("You Have Matched 3 Numbers. Congratulations, You Have Won £5,000,000!!\n"); return;
}
}

Do you notice something?
The if-s handling the case for 0 and 1 are not at the same indentation level then the other cases! Also the if-s for cases 0 and 1 are at the complete
wrong indentation level. You need to compare *all* numbers, not just a[0] with all b[j] to decide if there are 0 or 1 matches.


<Uncle voice>"And one more thing..."

Am I the only one who notices case 6: "You Have Matched 3 Numbers"?

--
Mabden
Jul 22 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
2635
by: cody | last post by:
I have to write an algorithm with must ensure that objects are put in buckets (which are always 4 in size). The objects have two properties: A and B. It is not allowed that in a bucket are objects...
6
1301
by: cleveralex1212 | last post by:
Sorry to disturb. I'm truly a beginner in C++ and my knowledge of it is really not much. I've been facing a serious problem during these few days. Let me describe my situation as clearly as I can...
11
6590
by: Abhishek | last post by:
I have a problem transfering files using sockets from pocket pc(.net compact c#) to desktop(not using .net just mfc and sockets 2 API). The socket communication is not a issue and I am able to...
8
9695
by: Sarah | last post by:
I need to access some data on a server. I can access it directly using UNC (i.e. \\ComputerName\ShareName\Path\FileName) or using a mapped network drive resource (S:\Path\FileName). Here is my...
3
6072
by: Juan Antonio Villa | last post by:
Hello, I'm having a problem replicating a simple database using the binary log replication, here is the problem: When the master sends an update to the slave, an example update reads as follows:...
5
6003
by: Harold Howe | last post by:
I am having a problem deserializing objects from a library when the following conditions exist: 1- The library is strongly named 2- The serialized file was created with version 1.0 of the...
9
5741
by: HC | last post by:
Hello, all, I started out thinking my problems were elsewhere but as I have worked through this I have isolated my problem, currently, as a difference between MSDE and SQL Express 2005 (I'll just...
16
4317
by: EM.Bateman | last post by:
Working on Visual Studio .Net I've implemented a class: #ifndef CONTRIBUTOR_H #define CONTRIBUTOR_H enum Gender {male=1, female, unk}; #include <iostream> #include <iomanip> #include...
22
2484
by: Wilson | last post by:
i am learning to program using c++ and was set a task of making a simple encryption algorithim. I choose to start with one where simply each letter is replaced with its equivilent in the alphabet...
4
3142
by: Dave Burns | last post by:
I am self hosting a Web Service in a Windows service. I am trying to start the service using the NT AUTHORITY\NetworkService account. I get a NullReferenceException on ServiceHost.Open() in the...
0
7125
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7165
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7205
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6887
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5462
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4590
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3085
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1419
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
291
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.