厦门大学“网宿杯“17届程序设计竞赛决赛(同步赛)

A-这波啊,这波是……

签到题,照着输出就可

#include<bits/stdc++.h>
using namespace std;
int main()
{
    cout<<"roudancongji";
}

B-李在赣神魔

将矩阵顺时针旋转90度,就是把矩阵换个方向开始输出就行
把第一列从下到上当作第一行从左到右,其余列类似

#include<bits/stdc++.h>
using namespace std;
int n;
char tu[1005][1005];
int main()
{
    cin>>n;
    for(int i=0;i<n;i++)
        cin>>tu[i];
    for(int i=0;i<n;i++)
    {
        for(int j=n-1;j>=0;j--)
            cout<<tu[j][i];
        cout<<endl;
    }
}

电竞希金斯

ax+by+c=0
这题就是分类讨论。
分类情况代码中有,我就不重复了

#include<bits/stdc++.h>
using namespace std;
int a,b,c;
int main()
{
    cin>>a>>b>>c;
    if(a*b>0)
    {
        if(c==0)
            cout<<"2 4";
        else if(-b*c>0)
            cout<<"1 2 4";
        else
            cout<<"2 3 4";
    }
    else if(a*b<0)
    {
        if(c==0)
            cout<<"1 3";
        else if(-b*c>0)
            cout<<"1 2 3";
        else
            cout<<"1 3 4";
    }
    else if(a==0&&b==0)
    {
        if(c==0)
            cout<<"1 2 3 4";
        else cout<<"non";
    }
    else if(a==0)
    {
        if(c==0)cout<<"non";
        else if(b*c>0)cout<<"3 4";
        else cout<<"1 2";
    }
    else if(b==0)
    {
        if(c==0)cout<<"non";
        else if(a*c>0)cout<<"2 3";
        else cout<<"1 4";
    }
}
全部评论

相关推荐

11-28 17:58
门头沟学院 Java
美团 JAVA开发 n×15.5
牛客786276759号:百度现在晋升很难的 而且云这块的业务没美团好 你看百度股价都跌成啥样了
点赞 评论 收藏
分享
点赞 评论 收藏
分享
11-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务