解题思路:根据当前位置坐标判断下一步行走方向和所要改变的位置颜色。(交流学习:1490707770)
注意事项:
参考代码:
#include<stdio.h>
int *p,*f;
char *asp;
void left(char *asp)
{
if(*asp=='L')
{
*asp='D';}
else if(*asp=='D')
*asp='R';
else if(*asp=='R')
*asp='U';
else if(*asp=='U')
*asp='L';
}
void right(char *asp)
{if(*asp=='L')
*asp='U';
else if(*asp=='U')
*asp='R';
else if(*asp=='R')
*asp='D';
else if(*asp=='D')
*asp='L';
}
int staus(int *p,int *f,char *asp)
{
if(*asp=='L')
*f=*f-1;
else if(*asp=='D')
*p=*p+1;
else if(*asp=='R')
*f=*f+1;
else if(*asp=='U')
*p=*p-1;
return 0;
}
int step(int *p,int *f,char *asp,int k,int a[100][100] )
{
for(int t=0;t<k;t++)
{
if(a[*p][*f]==0)
{a[*p][*f]=1;
left(asp);
staus(p,f,asp);}
else
{a[*p][*f]=0;
right(asp);
staus(p,f,asp);} }
printf("%d %d",*p,*f);
return 0;
}
int main()
{ int a[100][100],c,x,y,b,k;
char aspect,blank;
scanf("%d%d",&b,&c);
for(int i=0;i<b;i++)
for(int j=0;j<c;j++)
scanf("%d",&a[i][j]);
scanf("%d %d %c %d",&x,&y,&aspect,&k);
p=&x;
f=&y;
asp=&aspect;
step(p,f,asp,k,a);
return 0;
}
0.0分
0 人评分
Tom数 (C语言代码)浏览:2074 |
【蟠桃记】 (C++代码)(递归计算)浏览:1060 |
点我有惊喜!你懂得!浏览:1439 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:640 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:658 |
WU-输入输出格式练习 (C++代码)浏览:1133 |
printf基础练习2 (C语言代码)浏览:690 |
【蟠桃记】 (C语言代码)浏览:1084 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:2121 |