题目描述

Bessie's cruel second grade teacher has assigned a list of N (1 <= N <= 100) positive integers I (1 <= I <= 10^60) for which Bessie must determine their parity (explained in second grade as 'Even... or odd?'). Bessie is overwhelmed by the size of the list and by the size of the numbers. After all, she only learned to count recently.

Write a program to read in the N integers and print 'even' on a single line for even numbers and likewise 'odd' for odd numbers.

POINTS: 25

Bessie那惨无人道的二年级老师搞了一个有 N 个正整数 I 的表叫Bessie去判断“奇偶性”(这个词语意思向二年级的学生解释,就是“这个数是单数,还是双数啊?”)。Bessie被那个表的长度深深地震惊到了,竟然跟栋栋的泛做表格一样多道题!!!毕竟她才刚刚学会数数啊。

写一个程序读入N个整数,如果是双数,那么在单立的一行内输出"even",如果是单数则类似地输出"odd".

输入输出格式

输入格式:

  • Line 1: A single integer: N

  • Lines 2..N+1: Line j+1 contains I_j, the j-th integer to determine even/odd

输出格式:

  • Lines 1..N: Line j contains the word 'even' or 'odd', depending on the parity of I_j

输入输出样例

输入样例#1:

2
1024
5931
输出样例#1:

even
odd

说明

Two integers: 1024 and 5931

1024 is eminently divisible by 2; 5931 is not

看末位

#include<iostream>
#include<cstdio>
#include<string.h>
using namespace std;
long long n,a;
char b[];
int main()
{
cin>>n;
for(int i=;i<=n;i++)
{
cin>>b;
a=b[strlen(b)-]-'';
if(a%) printf("odd\n");
else printf("even\n");
}
return ;
}

最新文章

  1. Mac下配置Apache服务
  2. redis配置主从备份以及主备切换方案配置
  3. Learning From Data 第一章总结
  4. 【原】webpack学习笔记
  5. HTML5 自定义属性 data-* 和 jQuery.data 详解
  6. [Guava官方文档翻译] 3. 前置条件检查(Preconditions Explained)
  7. SSH搭建完美CURD,含分页算法
  8. sql里条件is null 在thinkphp里
  9. hdu3853(概率dp)
  10. centos7中firewall防火墙命令详解
  11. Oracle_Sequence如何初始化开始值
  12. ⑩bootstrap组件 导航 使用基础案例
  13. 微信小程序报错,不在以下 request 合法域名列表中(引起的探索)
  14. oracle收集ash和awr性能报告方法
  15. C语言复制文件的两种简单的方法【从根本解决问题】
  16. llinux除了软连接本地文件夹同步:mount
  17. python爬取酒店信息练习
  18. Qt5+VS2010的安装及使用
  19. chromium浏览器开发系列第三篇:chromium源码目录结构
  20. Docker基础-端口映射与容器互联

热门文章

  1. 把x指针指向的4个字节次序颠倒过来
  2. node-sass 安装失败win32-x64-48_binding.node
  3. XMU C语言程序设计实践(4)
  4. NSString类的方法实现
  5. oracle:ora-12560 tns 协议适配器错误
  6. Java变量和常量声明
  7. Erlang-VM节点启动名冲突问题
  8. JS截取与分割字符串常用技巧总结
  9. ES6之拷贝对象
  10. 【旧文章搬运】Windows内核常见数据结构(内核对象)