zoukankan      html  css  js  c++  java
  • POJ 1218

     1 #include <iostream>
     2 using namespace std;
     3 
     4 int main()
     5 {
     6     //freopen("acm.acm","r",stdin);
     7     int test;
     8     cin>>test;
     9     int num;
    10     int i;
    11     int j;
    12     int ans;
    13     while(test --)
    14     {
    15         cin>>num;
    16         i = 0;
    17         j = 1;
    18         ans = 0;
    19         while(i <= num)
    20         {
    21             i = j*j;
    22             ++ j;
    23             ++ ans;
    24         }
    25         cout<<ans-1<<endl;
    26     }
    27 }

    关注我的公众号,当然,如果你对Java, Scala, Python等技术经验,以及编程日记,感兴趣的话。 

    技术网站地址: vmfor.com

  • 相关阅读:
    codeforces
    hdu
    hdu
    poj 2823
    hdu
    hdu
    hdu
    微信公众号 SDK
    PHP 正则表达式
    注册和登录时的验证码
  • 原文地址:https://www.cnblogs.com/gavinsp/p/4563325.html
Copyright © 2011-2022 走看看