【水题】SDUT3035-你猜我猜不猜你猜不猜

你猜我猜不猜你猜不猜 

Time Limit: 2000MS Memory limit: 65536K

题目描述

In the past 39th annual ACM international collegiate programming contest in Beijing station in Asia that Triple_S sent by our school team won the SDUT in Reginal bronze 11. At the same time,the team’s name is cray which is to let the host after reading the wrong three times, still missed a word to read. But  zhuhu gave a high evaluation to the team.
 
As the creator of this team, I want to say is,  in fact I was reminded of a game which is named ”ni cai wo cai bu cai ni cai bu cai wo cai bu cai”, may be the teacher didn\'t remember it. The name is just due to a conversation with a girl, so the origin is simple.
 
A:Why are you so diao?
 
B:Ni cai.
 
A:Ni cai wo cai bu cai.
 
B:Ni cai wo cai bu cai ni cai bu cai.
 
A:Ni cai wo cai bu cai ni cai bu cai wo cai bu cai.
 
Then do you know the content of their first conversation X?OK,in order to avoid the mle , RE professionals will popularize related knowledge for you . Please seize this chance!
 
The operation is very simple, only need to output the first letter of each word .For example , You can substitute N for Ni . Next, I\'ll demonstrate specific operation steps

输入

 For everytestcase, each line of input a Character , said A or B.

Then enter an Integer X (0<=X<=10^5), said the figure’s the first  X words.

输出

 Output the words.

 

示例输入

A 2
A 3
B 3

示例输出

Ncwcbc
Ncwcbcncbcwcbc
Ncwcbcncbcwcbcncbc

 1 #include<stdio.h>  
 2 #include<string.h>  
 3 int main()  
 4 {  
 5     char ch[100];  
 6     int n;  
 7     while(~scanf("%s %d", &ch, &n))  
 8     {  
 9         if(strcmp(ch, "A")==0)  
10         {  
11             if(n==1)  
12             {  
13                 printf("Waysd\n");  
14             }  
15             else  
16             {  
17                 printf("Nc");  
18                 while(n-2)  
19                 {  
20                     printf("wcbcncbc");  
21                     n--;  
22                 }  
23                 printf("wcbc\n");  
24             }  
25         }  
26         else  
27         {  
28             printf("Nc");  
29             while(n-1)  
30             {  
31                 printf("wcbcncbc");  
32                 n--;  
33             }  
34             printf("\n");  
35         }  
36     }  
37     return 0;  
38 }  

 

posted @ 2014-11-30 19:50  6bing  阅读(172)  评论(0编辑  收藏  举报