zoukankan      html  css  js  c++  java
  • Post Robot

    Problem Description
    DT is a big fan of digital products. He writes posts about technological products almost everyday in his blog.

    But there is such few comments of his posts that he feels depressed all the day. As his best friend and an excellent programmer, DT asked you to help make his blog look more popular. He is so warm that you have no idea how to refuse. But you are unwilling to read all of his boring posts word by word. So you decided to write a script to comment below his posts automatically.

    After observation, you found words “Apple” appear everywhere in his posts. After your counting, you concluded that “Apple”, “iPhone”, “iPod”, “iPad” are the most high-frequency words in his blog. Once one of these words were read by your smart script, it will make a comment “MAI MAI MAI!”, and go on reading the post. 

    In order to make it more funny, you, as a fan of Sony, also want to make some comments about Sony. So you want to add a new rule to the script: make a comment “SONY DAFA IS GOOD!” when “Sony” appears.
     
    Input
    A blog article described above, which contains only printable characters(whose ASCII code is between 32 and 127), CR(ASCII code 13, ‘ ’ in C/C++), LF(ASCII code 10, ‘ ’ in C/C++), please process input until EOF. Note all characters are case sensitive.

    The size of the article does not exceed 8KB.
     
    Output
    Output should contains comments generated by your script, one per line.
     
    Sample Input
    Apple bananaiPad lemon ApplepiSony
    233
    Tim cook is doubi from Apple
    iPhoneipad
    iPhone30 is so biiiiiiig Microsoft
    makes good App.
     
    Sample Output
    MAI MAI MAI!
    MAI MAI MAI!
    MAI MAI MAI!
    SONY DAFA IS GOOD!
    MAI MAI MAI!
    MAI MAI MAI!
    MAI MAI MAI!
     
     1 #include <stdio.h>
     2 #include <string.h>
     3 
     4 int main(){
     5     char c;
     6     char s[1000];
     7     int i;
     8     int length;
     9 
    10     while(scanf("%c",&c)!=EOF){
    11         i=0;
    12         while(c!='
    '){
    13             s[i]=c;
    14             i++;
    15             c=getchar();
    16         }
    17         s[i]='';
    18         length=strlen(s);
    19 
    20         for(i=0;i<length;i++){
    21             if(i+4<length && s[i]=='A' && s[i+1]=='p' && s[i+2]=='p' && s[i+3]=='l' && s[i+4]=='e')
    22                 printf("MAI MAI MAI!
    ");
    23 
    24             if(i+5<length && s[i]=='i' && s[i+1]=='P' && s[i+2]=='h' && s[i+3]=='o' && s[i+4]=='n' && s[i+5]=='e')
    25                 printf("MAI MAI MAI!
    ");
    26 
    27             if(i+3<length && s[i]=='i' && s[i+1]=='P' && s[i+2]=='o' && s[i+3]=='d')
    28                 printf("MAI MAI MAI!
    ");
    29 
    30             if(i+3<length && s[i]=='i' && s[i+1]=='P' && s[i+2]=='a' && s[i+3]=='d')
    31                 printf("MAI MAI MAI!
    ");
    32 
    33             if(i+3<length && s[i]=='S' && s[i+1]=='o' && s[i+2]=='n' && s[i+3]=='y')
    34                 printf("SONY DAFA IS GOOD!
    ");
    35         }
    36 
    37         
    38 
    39 
    40     }
    41     return 0;
    42 }
  • 相关阅读:
    [IIS] IIS Framework "aspnet_regiis.exe" 注册
    [Bootstrap] install Bootstrap framework in window 7 by npm
    [Window] .MUS 0x80070422 Error
    【IIS】模块 DLL C:WindowsSystem32inetsrvauthcert.dll 未能加载。返回的数据为错误信息。
    【IIS】IIS 7.0/7.5 无法启动 w3svc 服务
    【IIS】IIS 7.0/7.5 绑定
    【SharePoint 2010】SharePoint 2010开发方面的课堂中整理有关问题
    『SharePoint 2010』Sharepoint 2010 Form 身份认证的实现(基于SQL)
    『SharePoint 2010』Sharepoint 2010 Form 身份认证的实现(基于AD)
    比较好用的Opera 翻译工具 ddict
  • 原文地址:https://www.cnblogs.com/zqxLonely/p/4087872.html
Copyright © 2011-2022 走看看