SGU 105 Div 3(找规律)

把数组列出来分析会发现 1 12 123 1234 。。。。

其是否满足整除3为 0 1 1 0 1 1 。。。。

既然找到了规律(循环节),代码就不远了(雪莱:你剽窃。。。)

上代码!

//SGU 105 Div 3 找规律
//找规律
//by night_watcher

#include<iostream>
using namespace std;

int main(){
    int n;
    while(cin>>n){
        if(n%3==2){
            n=n/3*2+1;
        }
        else n=n/3*2;
        cout<<n<<endl;
    }
    return 0;
}


 

你可能感兴趣的:(找规律)