首页 > 其他 > 详细

Halloween party

时间:2014-09-26 19:13:00      阅读:238      评论:0      收藏:0      [点我收藏+]

Halloween party

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;


int main() {
    int T;
    unsigned long K;
    cin>>T;
    
    while(T >= 1 && T <= 10 && T--)
    {
        cin>>K;
        if(K >= 2 && K <= 10000000)
        {
            cout<<(K * K /4)<<endl;
        }
    }
    /* Enter your code here. Read input from STDIN. Print output to STDOUT */   
    return 0;
}


Halloween party

原文:http://9320314.blog.51cto.com/9310314/1558583

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!