題目敘述
每筆測資有兩個整數a和b,要求輸出b/a,無條件進位。
範例輸入 #1
25 100
範例輸出 #1
4
範例輸入 #2
3 200
範例輸出 #2
67
解題思路
判斷b%a是不是0,如果不是的話在答案上+1。
解題程式碼如下 (僅供參考):#include <iostream>
using namespace std;
int main() {
cin.sync_with_stdio(0);
cin.tie(0);
int a, b;
cin >> a >> b;
int ans = b/a;
if (b % a != 0) ans++;
cout << ans << "\n";
}
留言
張貼留言