博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
10783 - Odd Sum
阅读量:6492 次
发布时间:2019-06-24

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

Odd Sum 

Given a range [a, b], you are to find the summation of all the odd integers in this range. For example, the summation of all the odd integers in the range [3, 9] is 3 + 5 + 7 + 9 = 24.

Input 

There can be at multiple test cases. The first line of input gives you the number of test cases, T ( 1$ \le$T$ \le$100). Then T test cases follow. Each test case consists of 2 integers a and b ( 0$ \le$a$ \le$b$ \le$100) in two separate lines.

Output 

For each test case you are to print one line of output - the serial number of the test case followed by the summation of the odd integers in the range [a, b].

Sample Input 

21535

Sample Output 

Case 1: 9Case 2: 8

 


Miguel Revilla 2004-12-02
#include"stdio.h"#include"stdlib.h"int main(){   long n,a,b,t,i,s;    scanf("%ld",&n);    t=0;    while(n--)    {scanf("%ld",&a);      scanf("%ld",&b);     s=0;     for(i=a;i<=b;i++)//判断是否为奇数;       {
if(i%2!=0) s+=i; } t++;//t表示case,在每一次情况结束后加一; printf("Case %ld: %ld\n",t,s); } system("pause"); return 0; }

 

转载于:https://www.cnblogs.com/www-xzpboke-com/archive/2013/02/21/2920295.html

你可能感兴趣的文章
zabbix 报警小案例
查看>>
CentOS 6.5下利用Rsyslog+LogAnalyzer+MySQL部署日志服务器
查看>>
shell ping 网段 多进程(很简单,喜欢就拿去用)
查看>>
枚举类、单实例
查看>>
正则参考
查看>>
C语言及程序设计 实践项目——C语言程序初体验
查看>>
我的友情链接
查看>>
Windows下如何卸载一个服务
查看>>
使用Spring AOP切面解决数据库读写分离
查看>>
【java集合框架源码剖析系列】java源码剖析之HashSet
查看>>
《梦断代码》读书笔记一
查看>>
1_node.js
查看>>
图片压缩技术
查看>>
Exchange企业实战技巧(17)让密件抄送给特定用户
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
varnish学习笔记
查看>>
1.Phaser游戏引擎介绍
查看>>
队列的链式存储结构
查看>>
Linux用户权限管理
查看>>