Oct 9, 2012 at 9:51am UTC
hi there i need help with my C++ assignment. we have to use graphics to create a game. can anyone help me ,i dont mind paying for the help. you can email me on aishiq92@hotmail.com
thank you
Oct 9, 2012 at 1:55pm UTC
If you just need to make a game and doesn't specify a method, use an existing game engine.
Oct 9, 2012 at 4:14pm UTC
Hello, what do you need done?
Oct 9, 2012 at 9:02pm UTC
Im doing "The Axe Problem" We are using loops and other things. The user enters an integer and it makes it that big. Heres an example of a triagle.
int n, c, k;
printf("Enter number of rows: ");
scanf("%d",&n);
for ( c = 1 ; c <= n ; c++)
{
for ( k = 1 ; k <= c ; k++ )
printf("*");
printf("\n");
}
for ( c = n - 2 ; c >= 0 ; c-- )
{
for ( k = c ; k >= 0 ; k-- )
printf("*");
printf("\n");
}
thats what the sides should look like and also it needs a handle
Last edited on Oct 9, 2012 at 9:03pm UTC