題目連結: https://zerojudge.tw/ShowProblem?problemid=a273

# 解題思路

記得判斷一個已經在樓梯下的狀況還有不能往下跳的狀況
如果可以整除就一定是可以的阿!

# 程式碼

#include <iostream>
using namespace std;
int main()
{
    int n,k;
    while(cin>>k>>n)
    {
        if(n==0&&k==0)
            cout<<"Ok!";
        else if (n==0)
            cout<<"Impossib1e!";
        else if(k%n==0&&n!=0)
                cout<<"Ok!";
        else
            cout<<"Impossib1e!";
        cout<<endl;
	}
}
更新於 閱讀次數

用實際行動犒賞爆肝的我😀

Zrn Ye LinePay

LinePay