日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

A Famous Music Composer

發(fā)布時間:2025/7/14 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 A Famous Music Composer 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

描述

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#=DbD ? ? ?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# majorA# minor?C# major?Db minor
?D# major?D# minorGb 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 #include<stdio.h>
#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;
}最優(yōu)程序#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;
}

轉(zhuǎn)載于:https://www.cnblogs.com/AquamarineOnly/p/5584430.html

總結(jié)

以上是生活随笔為你收集整理的A Famous Music Composer的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。