标签:std c++ clu pre 链接 题意 ret test tco
链接
题意
求\(H/A\)的上取整
代码实现
#include<bits/stdc++.h>
using namespace std;
int main(void){
int h,a;
cin >> h >> a;
cout<<(h+a-1)/a<<endl;
return 0;
}
标签:std c++ clu pre 链接 题意 ret test tco
原文地址:https://www.cnblogs.com/AC-AC/p/12235900.html