蓝桥杯历届试题-兰顿蚂蚁 (C语言代码) 摘要:解题思路:将移动规则自定义成一个函数,再进行k次循环即可。注意事项:参考代码:#include<stdio.h> int a[102][102]; void go(int *x,int *y,ch…… 题解列表 2018年02月10日 1 点赞 0 评论 803 浏览 评分:0.0
兰顿蚂蚁 (Java代码)41行代码 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 蓝盾蚂蚁 { public static void main(String[] a…… 题解列表 2018年02月07日 0 点赞 0 评论 1053 浏览 评分:0.0
蓝桥杯历届试题-兰顿蚂蚁 (C++代码)(40行代码简答) 摘要:解题思路:按照提议暴力解答注意事项:定义函数的简短性参考代码:# include <iostream> using namespace std; int num[1001][1001]={0}…… 题解列表 2018年02月02日 13 点赞 0 评论 1253 浏览 评分:0.0
蓝桥杯历届试题-兰顿蚂蚁 (C语言代码) 摘要:解题思路:蠢方法:所有情况都写一个判断,但是很简单明了注意事项:无参考代码:#include <stdio.h> #include <string.h> #include <stdlib.h> …… 题解列表 2018年01月30日 5 点赞 5 评论 1822 浏览 评分:8.0
兰顿蚂蚁 (Java代码) 摘要:解题思路:注意事项:每次头转之后要改变s的方向参考代码:import java.util.Scanner; public class Main { public static void …… 题解列表 2017年12月02日 0 点赞 0 评论 1086 浏览 评分:0.0
兰顿蚂蚁 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int a[100][100]={0};int main(){ int m,n; while(…… 题解列表 2017年09月23日 0 点赞 0 评论 1252 浏览 评分:6.0
兰顿蚂蚁 (C++代码) 摘要:#include<cstdio> #include<cstring> #include<iostream> using namespace std; int r,c; int step; …… 题解列表 2017年09月03日 0 点赞 0 评论 1333 浏览 评分:2.0
兰顿蚂蚁 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>char d0[4]={'L','U','R','D'};char d…… 题解列表 2017年07月15日 0 点赞 0 评论 1224 浏览 评分:0.0