码迷,mamicode.com
首页 > 其他好文 > 详细

hdu1065

时间:2017-01-20 23:30:03      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:for   span   color   gre   strong   ++   int   main   style   

#include <stdio.h>

int main()
{
    int t;
    double x, y;
    scanf("%d", &t);
    for(int i = 1; i <= t; ++i){
        scanf("%lf%lf", &x, &y);
        printf("Property %d: This property will begin eroding in year %d.\n",
            i, int((x*x + y*y) * 3.1415926 / 100 + 1));
    }
    printf("END OF OUTPUT.\n");
    return 0;
}

hdu1065

标签:for   span   color   gre   strong   ++   int   main   style   

原文地址:http://www.cnblogs.com/wangkun1993/p/6329544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!