zoukankan      html  css  js  c++  java
  • 25.A Famous Music Composer

    描述
    Mr. B is a famous music composer. One of his most famous work was his set of preludes. These 24 pieces span the 24 musical keys (there are musically distinct 12 scale notes, and each may use major or minor tonality). The 12 distinct scale notes are: 
     A     A#=Bb  B        C       C#=Db D       D#=Eb  E       F        F#=Gb  G       G#=Ab

    Five of the notes have two alternate names, as is indicated above with equals sign. Thus, there are 17 possible names of scale notes, but only 12 musically distinct notes. When using one of these as the keynote for a musical key, we can further distinguish between major and minor tonalities. This gives 34 possible keys, of which 24 are musically distinct. 
    In naming his preludes, Mr. B used all the keys except the following 10, which were named instead by their alternate names: 
     Ab minor  A# major A# minor  C# major  Db minor
     D# major  D# minor Gb major  Gb minor  G# major 
    Write a program that, given the name of a key, give an alternate name if it has one, or report the key name is unique. 
    输入
    Each test case is described by one line having the format "note tonality", where "note" is one of the 17 names for the scale notes given above, and "tonality" is either "major" or "minor" (quotes for clarify).
    输出
    For each case output the required answer, following the format of the sample.
    样例输入
    Ab minor
    D# major
    G minor
    样例输出
    Case 1: G# minor
    Case 2: Eb major
    Case 3: UNIQUE
     1 #include <stdio.h>
     2 #include <string.h>  
     3 int main( ) {  
     4     char s1[10],s2[10];  
     5     int sign = 1;  
     6     while(scanf("%s%s",s1,s2) != EOF) {
     7         printf("Case %d: ",sign++);  
     8         if(!strcmp(s1,"A#")) 
     9             printf("%s %s
    ","Bb",s2);  
    10         else if(!strcmp(s1,"Bb")) 
    11             printf("%s %s
    ","A#",s2);  
    12         else if(!strcmp(s1,"C#")) 
    13             printf("%s %s
    ","Db",s2);  
    14         else if(!strcmp(s1,"Db")) 
    15             printf("%s %s
    ","C#",s2);  
    16         else if(!strcmp(s1,"D#")) 
    17             printf("%s %s
    ","Eb",s2);  
    18         else if(!strcmp(s1,"Eb")) 
    19             printf("%s %s
    ","D#",s2);  
    20         else if(!strcmp(s1,"F#")) 
    21             printf("%s %s
    ","Gb",s2);  
    22         else if(!strcmp(s1,"Gb")) 
    23             printf("%s %s
    ","F#",s2);  
    24         else if(!strcmp(s1,"G#")) 
    25             printf("%s %s
    ","Ab",s2);  
    26         else if(!strcmp(s1,"Ab")) 
    27             printf("%s %s
    ","G#",s2);  
    28         else
    29             printf("UNIQUE
    ");
    30     }
    31     return 0;
    32 } 
    View Code
  • 相关阅读:
    如何手工设置归档目录
    C#字符串格式化说明(String.Format) (zz.IS2120)
    win7 GodMode
    金山软件公司创始人求伯君简介 (is2120.zz)
    【百度地图】安卓系统的百度地图可以下载离线地图,这个很省流量和时间
    手机用笔记本wifi上网【无USB、无软件、无无线路由器】
    安卓版有道词典的离线词库《21世纪大英汉词典》等
    秀秀我的巨无霸手机P1000
    [转载]环游澳大利亚18天——前传与攻略
    [转载]环游澳大利亚18天——前传与攻略
  • 原文地址:https://www.cnblogs.com/tong69/p/5776833.html
Copyright © 2011-2022 走看看