Its Very Important Please Help me i need ur help plzzzz


Hi guys,
I know after reading my post you will dislike it.
But Please Read my Full Problem Then Decide what i'm saying.
I seriously Need Help of a Good Programmer Being a student.
I'm Just the beginner in programming.In My Class i got a Project
to make PAC Man game a simple code using only
Loops..If else statements..Arrays..Pointers...Structures..
this is the criteria for my project .
This Project Holds 10 S0lid Marks this is very important for me.
i try my best but can only make the boundries using aray.
Guys by Sake of God Plese Help me if i loose these points my
percentage will be down and my way to programming will be finished
cuz my parents wants me to get max. marks. Now i have ony 10 Days left and
i DOnt know what to do or not to do.So, i poted on this.. Please Plzzz Help me to
Make this programm plzzzzzzzzz ;( all i did is this.

shanipasrooria@gmail.co its my emali if anyone want help plz contact me plzzzz
#include <iostream>
#include <conio.h>
using namespace std;

void map()
{
char map [14][37] =
{

"####################################",
"# #",
"# #",
"# #",
"# #",
"# #",
"# #",
"# #",
"# #",
"# #",
"# #",
"# #",
"# #",
"####################################",
};


for (int x=0 ; x<=13 ; x++)
{
cout << map [x] << endl;
}
}

int main()
{
map();



return 0;
}

Please ..... ;(
Last edited on
is ur prblm that u want a character(a-z) appearing to move in output?
if thats it...den d solution is simple.

use a loop from 0 to maximum of ur screen (it is 79 majorly)
use a cout statement in loop as :
cout<<" A\b"; // see the space before 'A'
the space overwrites A on every next loop and this appears to be moving but is not exactly.
Topic archived. No new replies allowed.