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 }
  • 相关阅读:
    20155313 2016-2017-2《Java程序设计》课程总结
    java第四次实验
    java第五次实验
    20155313 实验三《Java面向对象程序设计》实验报告
    20155313 2016-2017-2 《Java程序设计》第十周学习总结
    20155311《Java程序设计》实验五(网络编程与安全)实验报告
    学号20155311 2016-2017-2《Java程序设计》课程总结
    20155311高梓云补交的Mypc课下实践
    20155311 《Java程序设计》实验四 (Android程序设计)实验报告
    20155311 实验三 敏捷开发与XP实践 实验报告
  • 原文地址:https://www.cnblogs.com/zqxLonely/p/4087872.html
Copyright © 2011-2022 走看看