其他分享
首页 > 其他分享> > Serval vs Monster

Serval vs Monster

作者:互联网

Serval vs Monster

  1. 链接

    A - Serval vs Monster

  2. 题意

    求\(H/A\)的上取整

  3. 代码实现

    #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,题意,int,Serval,vs,Monster
来源: https://www.cnblogs.com/AC-AC/p/12235900.html