A Famous Music Composer
生活随笔
收集整理的這篇文章主要介紹了
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 |
| ?Ab minor | ?A# major | A# minor? | C# major? | Db minor |
| ?D# major | ?D# minor | Gb major? | Gb minor? | G# major? |
#include<string.h>
int main()
{
??? char s[100];
??? int i,n,c=1;
??? while(gets(s))
??? {
??????? n=strlen(s);
??????? printf("Case %d: ",c++);
??????????? if(s[1]=='#')
??????????? {
??????????????? if(s[0]=='G')
??????????????????? printf("Ab");
??????????????? else
??????????????????? printf("%cb",s[0]+1);
??????????????????? for(i=2;i<n;i++)
??????????????????????? printf("%c",s[i]);
??????????????????? printf("\n");
??????????? }
??????????? if(s[1]=='b')
??????????? {
??????????????? if(s[0]=='A')
??????????????????? printf("G#");
??????????????? else
??????????????????? printf("%c#",s[0]-1);
??????????????????? for(i=2;i<n;i++)
??????????????????????? printf("%c",s[i]);
??????????????????? printf("\n");
??????????? }
??????????? if(s[1]==' ')
??????????? printf("UNIQUE\n");
??? }
??? return 0;
}最優程序#include<iostream>
#include<string>
using namespace std;
string trans(string a){
string b="";
if(a[1]=='#'){
b+=char((a[0]-'A'+1)%7+'A');
b+='b';
}else{
b+=char((a[0]-'A'+6)%7+'A');
b+='#';
}
return b;
}
int main(){
string a,b;
for(int t=1; cin>>a>>b; t++){
cout<<"Case "<<t<<": ";
if(a.length()==1)
cout<<"UNIQUE"<<endl;
else
cout<<trans(a)<<" "<<b<<endl;
}
return 0;
}
轉載于:https://www.cnblogs.com/AquamarineOnly/p/5584430.html
總結
以上是生活随笔為你收集整理的A Famous Music Composer的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: grunt live reload 配置
- 下一篇: Android OpenCV Manag