当前位置: 首页 > 工具软件 > Kangaroo > 使用案例 >

Kangaroo Puzzle

封锐藻
2023-12-01

地图上400个点,直接走一个50000的字符串。
用随机函数rand()%4产生四个方向的随机数。
关于rand添加链接描述

#include<bits/stdc++.h>
using namespace std;
char str[100][10000];
int a,b,c,d,e;
int main()
{
    cin>>a>>b;
    for(int i=1; i<=a; i++)
    {
        cin>>str[i];
    }
    for(int i=1; i<=49999; i++)
    {
        int p=rand()%4;
        if(p==0)
            cout<<"U";
        else if(p==1)
            cout<<"D";
        else if(p==2)
            cout<<"L";
        else
            cout<<"R";
    }
    cout<<endl;
    return 0;
}
 类似资料:

相关阅读

相关文章

相关问答