1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
#include "stdafx.h"
#include <iostream>
#include <string>
#define _CRT_SECURE_NO_WARNINGS
using namespace std;
//int main()
//{
//
// char note1, note2, dummy; /* note names,dummy char*/
// int pc1, pc2, interval; /* pitch class,interval*/
// cout << "please enter two natural notes" << endl;
// cout << "first natural note:";
// cin >> (note1);
// cout << "second natural note:";
// cin >> (note2);
//
//
//
// switch(note1)
// { case 'C':case 'c':
// pc1 = 0;
// case 'D':case 'd':
// pc1 = 2;
// break;
// case 'E':case 'e':
// pc1 =4;
// break;
// case 'F':case 'f':
// pc1 = 5;
// case 'G':case 'g':
// pc1 = 7;
// break;
// case 'A':case 'a':
// pc1 = 9;
// break;
// case 'B':case 'b':
// pc1 = 11;
// break;
// default:
// cout << "error:", (note1), "is not a natural note ";
// return 1;
// }
// switch (note2)
// {
// case 'C':case 'c':
// pc2 = 0;
// case 'D':case 'd':
// pc2 = 2;
// break;
// case 'E':case 'e':
// pc2 = 4;
// break;
// case 'F':case 'f':
// pc2 = 5;
// case 'G':case 'g':
// pc2 = 7;
// break;
// case 'A':case 'a':
// pc2 = 9;
// break;
// case 'B':case 'b':
// pc2 = 11;
// break;
// default:
// cout << "error:", (note2), "is not a natural note ";
// return 1;
// }
//
//
// /* calculate the interval and keep it mod 12. */
// interval = pc2 - pc1;
// if (interval < 0) interval+= 12;
// else if (interval > 11) interval -= 12;
// /* print the number of semitones. The special case of unison(0)
// has to be handled correctly, so we use the conditional
// operator for this*/
// //cout << "%d semitones up or %d semitones down\n", (interval), (interval ? 12 - interval : 0);
// /* now we print out the interval name*/
//
// switch(interval)
// { case 1:
// cout <<"minor second up, or major 7th down" ;
// break;
// case 2:
// cout <<"major 2nd up or minor 7th down" ;
// break;
// case 3:
// cout <<"minor 3rd up or major 6th down" ;
// break;
// case 4:
// cout <<"major 3rd up or minor 6th down" ;
// break;
// case 5:
// cout <<"perfect 4th up or perfect 5th down" ;
// break;
// case 6:
// cout <<"augmented 4th" ;
// break;
// case 7:
// cout << "perfect 5th up or perfect 4th down";
// break;
// case 8:
// cout << "minor 6th up or major 3rd down";
// break;
// case 9:
// cout << "major 6th up or minor 3rd down";
// break;
// case 10:
// cout <<"minor 7th up or major 2nd down" ;
// break;
// case 11:
// cout << "major 7th up or minor 2nd down";
// break;
//
// }
//
// system("pause");
//
// return 0;
//}
//
//int main{
// int note, i;
//
//cout<< "Please enter the key(in pitch class number, 0-11):";
///* make sure start of note is not negative*/
//while (note < 0;) note += 12;
///* build scale */
//for (i = 0; i < 7; i++;)
//{
// /* translate pitch-class to note name*/
// if (note % 12 == 0) cout << "C";
// else if (note % 12 == 0)
// else if (note % 12 == 1) cout << "Db";
// else if (note % 12 == 2) cout << "D";
// else if (note % 12 == 3) cout << "Eb";
// else if (note % 12 == 4) cout << "E";
// else if (note % 12 == 5) cout << "F";
// else if (note % 12 == 6) cout << "Gb";
// else if (note % 12 == 7)cout << "G";
// else if (note % 12 == 8)cout << "Ab";
// else if (note % 12 == 9)cout << "A";
// else if (note % 12 == 10)cout << "Bb";
// else cout << "B";
// /* find the next pitch, class*/
// if (i != 2) note += 2;
//}
//}
///more compact version of the interval program:
//#include <stdio.h>
//#define _CRT_SECURE_NO_WARNINGS
//int nameToPc(char name) {
// switch (name)
// {
// case 'C':case 'c':
// return 0;
//
// case 'D':case 'd':
// return 2;
//
// case 'E':case 'e':
// return 4;
// case 'F':case 'f':
// return 5;
// case 'G':case 'g':
// return 7;
// case 'A':case 'a':
// return 9;
// case 'B':case 'b':
// return 11;
// default: /* error code*/
// return 100;
// }
//
//}
//
//int main()
//
//{
// char note1, note2, dummy;
// int interval;
// printf("please enter two natural notes.\nfirst note:");
// scanf("%c%c", ¬e1, &dummy);
// printf("second note: ");
// scanf("%c", ¬e2);
// /* to calculate the interval, we call nameToPc() to translate*/
// interval = nameToPc(note2) - nameToPc(note1);
// if(interval>20||interval<-11)
// {
// printf("either %c or %c are invalid notes\n", note1, note2);
// return 1;
//
// }
// if (interval > 11) interval -= 12;
// printf("%d semitones up or %d semitones down\n", interval, interval ? 12 - interval : 0);
//
// return 0;
//}
//#include <stdio.h>
//#include <string.h>
//int main()
//{
// int note, i;
// char key[3];
// std::string scale[12] = { "C","Db", "D","Eb","E","F","Gb","G",
// "Ab","A","Bb"};
// std::cout << "Please enter capitals only";
// std::cin >> scale[12];
// for(i=0; i<12; i++)
// {
// if ((scale[i], key) == 0) { note = i;
//
// std::cout << ("major scale", key);
//
// }
// if( note>=0)
// {
// for (i = 0; i<7; i++)
// {
// std::cout << scale[note % 12];
// if (i != 2) note += 2;
// else note++;
// }
// std::cout << ("\n");
// }
// else { std::cout << ("invalid key", key);
// return 1;
// }
// }
//
//}
//example of pointer arithmetic to step through and array
#include<iostream>
int main()
{
int i;
for (i = 0; i<6; i++)
{
int array[6]{ 1,2,3,4,5,6 };
int *pa;
pa = &array[6];
*pa = array[6];
//pa++;
std::cout << array[i];
}
return 0;
}
|