zoukankan      html  css  js  c++  java
  • FZU 2146

    Easy Game
    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

    Description

    Fat brother and Maze are playing a kind of special (hentai) game on a string S. Now they would like to count the length of this string. But as both Fat brother and Maze are programmers, they can recognize only two numbers 0 and 1. So instead of judging the length of this string, they decide to judge weather this number is even.

    Input

    The first line of the date is an integer T, which is the number of the text cases.

    Then T cases follow, each case contains a line describe the string S in the treasure map. Not that S only contains lower case letters.

    1 <= T <= 100, the length of the string is less than 10086

    Output

    For each case, output the case number first, and then output “Odd” if the length of S is odd, otherwise just output “Even”.

    Sample Input

    4 well thisisthesimplest problem inthiscontest

    Sample Output

    Case 1: Even Case 2: Odd Case 3: Odd Case 4: Odd
     1 #include <stdio.h>
     2 #include <string.h>
     3 int main()
     4 {
     5     int T;
     6     char s[20088];
     7     int i,j,k,ca=1;
     8     scanf("%d",&T);
     9     while(T--)
    10     {
    11         scanf("%s",s);
    12         int l=strlen(s);
    13         printf("Case %d: ",ca);
    14         if(l%2==0)
    15             printf("Even
    ");
    16         else
    17             printf("Odd
    ");
    18         ca++;
    19     }
    20     return 0;
    21 }
    View Code
  • 相关阅读:
    NYOJ 132(最长回文子串)
    NYOJ 148(斐数求余)
    NYOJ 97
    NYOJ 206
    NYOJ 520(最大素因子的序数)
    数据库大型应用解决方案总结(转)
    SQL好的写法(转)
    WebService如何调试及测试工具
    刪除windows服務方法
    GhostDoc(注释生成工具)使用方法
  • 原文地址:https://www.cnblogs.com/cyd308/p/4771406.html
Copyright © 2011-2022 走看看