博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
25.A Famous Music Composer
阅读量:6802 次
发布时间:2019-06-26

本文共 2524 字,大约阅读时间需要 8 分钟。

描述
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 minorD# majorG minor
样例输出
Case 1: G# minorCase 2: Eb major
Case 3: UNIQUE
1 #include 
2 #include
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\n","Bb",s2); 10 else if(!strcmp(s1,"Bb")) 11 printf("%s %s\n","A#",s2); 12 else if(!strcmp(s1,"C#")) 13 printf("%s %s\n","Db",s2); 14 else if(!strcmp(s1,"Db")) 15 printf("%s %s\n","C#",s2); 16 else if(!strcmp(s1,"D#")) 17 printf("%s %s\n","Eb",s2); 18 else if(!strcmp(s1,"Eb")) 19 printf("%s %s\n","D#",s2); 20 else if(!strcmp(s1,"F#")) 21 printf("%s %s\n","Gb",s2); 22 else if(!strcmp(s1,"Gb")) 23 printf("%s %s\n","F#",s2); 24 else if(!strcmp(s1,"G#")) 25 printf("%s %s\n","Ab",s2); 26 else if(!strcmp(s1,"Ab")) 27 printf("%s %s\n","G#",s2); 28 else29 printf("UNIQUE\n");30 }31 return 0;32 }
View Code

 

转载于:https://www.cnblogs.com/tong69/p/5776833.html

你可能感兴趣的文章
ToastUtil,一个简单的Toast封装
查看>>
如何在Centos7进行网络配置
查看>>
orabbix结合python发送图形报表
查看>>
Android权限处理分类
查看>>
找不到TouchCopy16激活码位置?
查看>>
IT兄弟连 JavaWeb教程 URI、URL
查看>>
为什么说甲骨文裁员也属无奈之举?
查看>>
Wdatepicker日期控件的使用指南
查看>>
数据包结构分析
查看>>
[转]一位前辈对IT工程师的职业前途的一点个人看法
查看>>
Linux文件系统只读Read-only file system
查看>>
Migrate to new vCenter Server while using dvSwitches
查看>>
ConcurrentHashMap原理分析
查看>>
phpstorm config include paths for swoole
查看>>
ruby的基础语法
查看>>
代码触发clistctrl控件的NM_CLICK事件
查看>>
我的友情链接
查看>>
win7安装***失败,出现错误771
查看>>
搭建python本地源
查看>>
【转】WaitN 自动化测试 入门
查看>>