hdu 2201 熊猫阿波的故事

http://acm.hdu.edu.cn/showproblem.php?pid=2201
刚开始可能没看懂什么意思,仔细想想就知道了
代码:

#include <iostream>
#include <cstdio>
using namespace std;

int main()
{
    int m,n;
    while(cin>>m>>n)
    {
        printf("%.2lf\n",1.0/m);
    }
    return 0;
}

你可能感兴趣的:(水)