博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sum of odd and even elements
阅读量:4884 次
发布时间:2019-06-11

本文共 542 字,大约阅读时间需要 1 分钟。

Given an integer N, you have to print the sum of odd numbers and even numbers form 1 to N

Input:

First line consists of T test cases. First line of every test case consists of a Single integer N.

Output:

Single line output, with sum of odd numbers and even numbers respectively.

Constraints:

1<=T<=100
1<=N<=10^5

Example:

Input:
2
5
6
Output:
9 6
9 12

下面是我的代码实现:注意,这里需要长整形,不然当输入过大时候,就会发生溢出现象。

#include 
int main() { int n,i,j;//n组实例 scanf("%d",&n); for(i=0;i

如有问题,请留言。

转载于:https://www.cnblogs.com/wongyi/p/7672719.html

你可能感兴趣的文章
声明,本博客文章均为转载,只为学习,不为其他用途。感谢技术大牛的技术分享,让我少走弯路。...
查看>>
centos7.1下 Docker环境搭建
查看>>
c# 导出Excel
查看>>
Status: Checked in and viewable by authorized users 出现在sharepoint 2013 home 页面
查看>>
python数据预处理
查看>>
Python之路,Day21 - 常用算法学习
查看>>
Android安全-代码安全1-ProGuard混淆处理
查看>>
部署core
查看>>
mysql 时间设置
查看>>
如何在 Xcode 中修改应用的名字
查看>>
有关交换机——熟悉原理是必须的【转载】
查看>>
ACM(数学问题)——UVa202:输入整数a和b(0≤a≤3000,1≤b≤3000),输出a/b的循环小数表示以及循环节长度。...
查看>>
【转】Android 读取doc文件
查看>>
js 数据绑定
查看>>
jsp的C标签一般使用方法以及js接收servlet中的对象及对象数字
查看>>
window.frameElement的使用
查看>>
如何使用jQuery $.post() 方法实现前后台数据传递
查看>>
Using Flash Builder with Flash Professional
查看>>
jsp/post中文乱码问题
查看>>
C# 插入或删除word分页符
查看>>