im having trouble programming , but its suppose to look something like this,, can anyone help out? im a beginner in c++ so i don't know much... tthis are my notes and im not sure how to do it
image that it suppos to look like: http://img86.imageshack.us/img86/2594/55923788ip0.jpg
what it would do: allows to scroll to next circle and when you press enter it should color the first player as blue and second player as red.. called "BIngo Chess"

#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<stdlib.h>
#include<dos.h>

void main ()
{
int gd= DETECT, gm;
int RADIUS, xcoor, ycoor;
int chipos;

clrscr();
initgraph(&gd,gm,"");
Radius = 20; xcoor= 100; ycoor= 140;
chipos=40;
setcolor(7)  // lightgray
bar(100,60,180,140);

for (xcoor=100; xcoor,=60; x= x+40)
{
for (ycoor=140; ycoor=560; y=x+40)
{
setcolor (2); // cyan
fillellipse(ycoor, xcoor, Radius, Radius);
}
}
setcolor (RED);
fillellipse (140,60,Radius, Radius);
getch();
closegraph();
}
}

char keys; xloc =8, yloc=1;
row=380; pcolor= REd, sw=1;
key rtn
switch (keys= getch ())
{
case75: setfillstyle (1, BLACK); // left arrow key
fillellipse (prow, pcol, rad, rad);
pcol=pcol-40;
if (pcol<=140)
{
pcol=420;
setfillstyle (1, pcolor)
fillellipse(prow, pcol, rod, rod);
}
setfillstyle (1, pcolor);
fillellipse psc (prow, pcol, rod, rod);
goto key_rtn;

case77: setfillstyle (1, BLACK); // right arrow
fillellipse (prow, pcol, rad, rad);
pcol= pcol+40;
if (pcol >= 420)
{
pcol=140;
setfillstyle (1, pclor);
fillellipse (prow, pcol, rad, rad);
goto key_rtn;

case13: if (sw ==1)
{
pclor = RED;
setfillstyle (1, pcolor);
fillellipse (row, pcol,rad,rad);
row= -40;
sw=2
pcolor= BLUE
}
else
if (sw ==2)
{
PCOLOR = BLUE;
setfillstyle (1, pcolor);
fillellipse (row, pcol, rad, rad);
row= row-40;
sw=1
pcolor = RED;
}
int locator [8] [8];

int chippos [8] [8];
int i,j;
j=8;
chippos[i][j]=
i=1; j=1;
for (col=160; col<=480; col+=30)
for (row=180; row<=400; row+=30)
{
j++
setfillstyle (1,CYAN);
fillellipse (col,row,15,15);
chippos[i][j]=row;
}

i++;
}

Recommended Answers

All 2 Replies

This is C code not C++.

You are posting your code twice. With wich I should work?(interesting)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.