#11171: C++解答


dicksobig (迪克筆所˙比隔)

學校 : 臺北市私立延平高級中學
編號 : 54477
來源 : [140.115.205.44]
最後登入時間 :
2021-10-07 15:39:32
a273. 小朋友下樓梯 | From: [203.72.178.252] | 發表日期 : 2016-07-15 13:45

#include <iostream>
#include <stdlib.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
int n,k;
while(cin>>n>>k)
{
if(n==0 || n>=k && k>0 && n%k==0) cout<<"Ok!\n";
else cout<<"Impossib1e!\n";
}
return 0;
}

 
ZeroJudge Forum