| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
无语,可以做到这个效果!#include<stdio.h>
int maze[5][5] = {
0, 1, 0, 0, 0,
0, 1, 0, 1, 0,
0, 0, 0, 0, 0,
0, 1, 1, 1, 0,
0, 0, 0, 1, 0,
};
int main()
{
printf("(0, 0)\n");
printf("(1, 0)\n");
printf("(2, 0)\n");
printf("(2, 1)\n");
printf("(2, 2)\n");
printf("(2, 3)\n");
printf("(2, 4)\n");
printf("(3, 4)\n");
printf("(4, 4)\n");
}
Followed by:
Post your reply here: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator