事Originally


私信TA

用户名:dotcpp0660839

访问量:418

签 名:

等  级
排  名 3998
经  验 1791
参赛次数 12
文章发表 9
年  龄 13
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:需要想到多种可能

参考代码:

#include <bits/stdc++.h>


using namespace std;


int main()

{

    int x;

    cin>>x;

    if(x%4==0)

    {

        cout<<0<<" "<<0<<" "<<x/4; 

    }

    else if(x%4==1)

    {

        cout<<0<<" "<<1<<" "<<x/4-1;

    }

    else if(x%4==2)

    {

        cout<<1<<" "<<0<<" "<<x/4-1;

    }

    else if(x%4==3)

    {

        cout<<1<<" "<<1<<x/4-2;

    }

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »