• TJUoj水题 数羊


    ***After a long night of coding, Charles Pearson Peterson is having trouble sleeping. This is not only because he is still thinking about the problem he is working on but also due to drinking too much java during the wee hours. This happens frequently, so Charles has developed a routine to count sheep. Not the animal, but the word. Specifically, he thinks of a list of words, many of which are close in spelling to “sheep”, and then counts how many actually are the word “sheep”. Charles is always careful to be case-sensitive in his matching, so “Sheep” is not a match. You are to write a program that helps Charles count “sheep”.
    Input

    Input will consist of multiple problem instances. The first line will consist of a single positive integer n ≤ 20, which is the number of problem instances. The input for each problem instance will be on two lines. The first line will consist of a positive integer m ≤ 10 and the second line will consist of m words, separated by a single space and each containing no more than 10 characters.

    Output

    For each problem instance, you are to produce one line of output in the format:

    Case i: This list contains n sheep.
    The value of i is the number of the problem instance (we assume we start numbering at 1) and n is the number of times the word “sheep” appears in the list of words for that problem instance. Two successive lines should be separated by a single blank line, but do not output any trailing blank line.

    Sample Input

    4
    5
    shep sheeps sheep ship Sheep
    7
    sheep sheep SHEEP sheep shepe shemp seep
    10
    sheep sheep sheep sheep sheep sheep sheep sheep sheep sheep
    4
    shape buffalo ram goat
    Sample Output

    Case 1: This list contains 1 sheep.

    Case 2: This list contains 3 sheep.

    Case 3: This list contains 10 sheep.

    Case 4: This list contains 0 sheep.


    题意:计算与sheep相同的单词个数。
    注意:每个样例之间输出一个空行

    #include<stdio.h>
    #include<string.h>
    #define N 100
    char str[N];
    
    int main()
    {
        int t;
        int i,count,n,k;
        scanf("%d",&t);
        k = t;
        while( t --)
        {
            scanf("%d",&n);
            count = 0;
            memset(str,0,sizeof(str));
            for( i =1; i <= n; i ++)
            {
                scanf("%s",str);
                if(!strcmp(str,"sheep"))
                    count ++;
            }
            if(t!=0)
                printf("Case %d: This list contains %d sheep.
    
    ",k-t,count);
            else
                printf("Case %d: This list contains %d sheep.
    ",k-t,count);
        }
        return 0;
    }
    

    后记:纪念性的水题,省赛完后第一道刷的题,也是第一次在tjuoj上刷的题。以后好好刷题吧,争取今后超过隔壁大佬

  • 相关阅读:
    实现USB即插即用 教您怎么取消安全删除硬件功能
    如何用EFS对脱机文件加密
    快速美化封面用word就可以
    给iPhone联系人设置小头像的两种方法
    文件夹加密巧用“类标识符”
    保存网页FLASH有妙招
    使用EFS对你电脑上的脱机文件加密
    虚拟xp系统如何在win7系统中安装
    医药圈 www.eyaoq.com
    《eyaoq.com医药圈医药人自己的社区邀请函》
  • 原文地址:https://www.cnblogs.com/hellocheng/p/7350162.html
Copyright © 2020-2023  润新知