zoukankan      html  css  js  c++  java
  • pku1005

    #include<iostream>

    using namespace std;

    int main(){

         float x,y;//坐标

         int testcase,t=0;

         cin>>testcase;

         while(testcase){

           cin>>x>>y;

           ++t;

           cout<<"Property "<<t<<": This property will begin eroding in year "<<(int)(3.1415926*(x*x+y*y)/100+1)<<"."<<endl;

             --testcase;

         }

         cout<<"END OF OUTPUT."<<endl;

         return 0;             

     

    }

    TRUST WITHOUT WAVERING
  • 相关阅读:
    sqlserver添加表、字段注释
    SQL语句增加字段、修改字段、修改类型、修改默认值
    端口概念
    删除数据库数据
    转移数据库表数据
    优化网站
    提高SQL查询效率
    相关方法扩展
    SQL空和NULL的区别
    C#分布式缓存Couchbase使用
  • 原文地址:https://www.cnblogs.com/vivizhyy/p/3394898.html
Copyright © 2011-2022 走看看