[恢]hdu 2201

2011-12-15 02:57:40

地址:http://acm.hdu.edu.cn/showproblem.php?pid=2201

题意:中文。。。

mark:废话超多。其实就是求第一个数的倒数,和第二个数无关。

代码:

# include <stdio.h>


int main ()
{
int n , m;
while (~scanf ("%d%d", &n, &m))
printf ("%.2lf\n", 1.0/(double)n) ;

return 0 ;
}



posted @ 2012-01-06 15:06  Seraph2012  阅读(122)  评论(0编辑  收藏  举报