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
|
if(strcmp(resistorColorOne, "Brown") == 0) {
resistorValue = 10;
if(strcmp(resistorColorTwo, "Black") == 0) {
resistorValue = resistorValue + 0;
if(strcmp(resistorColorThree, "Black") == 0) {
resistorValue = resistorValue * 1;
}
else if(strcmp(resistorColorThree, "Brown") == 0) {
resistorValue = resistorValue * 10;
}
else if(strcmp(resistorColorThree, "Red") == 0) {
resistorValue = resistorValue * 100;
}
else if(strcmp(resistorColorThree, "Orange") == 0) {
resistorValue = resistorValue * 1000;
}
else if(strcmp(resistorColorThree, "Yellow") == 0) {
resistorValue = resistorValue * 10000;
}
else if(strcmp(resistorColorThree, "Green") == 0) {
resistorValue = resistorValue * 100000;
}
else if(strcmp(resistorColorThree, "Blue") == 0) {
resistorValue = resistorValue * 1000000;
}
else if(strcmp(resistorColorThree, "Violet") == 0) {
resistorValue = resistorValue * 10000000;
}
else {
printf("Unkown Color please enter in correct format: Brown Brown Brown");
}
}
else if(strcmp(resistorColorTwo, "Brown") == 0) {
resistorValue = resistorValue + 1;
if(strcmp(resistorColorThree, "Black") == 0) {
resistorValue = resistorValue * 1;
}
else if(strcmp(resistorColorThree, "Brown") == 0) {
resistorValue = resistorValue * 10;
}
else if(strcmp(resistorColorThree, "Red") == 0) {
resistorValue = resistorValue * 100;
}
else if(strcmp(resistorColorThree, "Orange") == 0) {
resistorValue = resistorValue * 1000;
}
else if(strcmp(resistorColorThree, "Yellow") == 0) {
resistorValue = resistorValue * 10000;
}
else if(strcmp(resistorColorThree, "Green") == 0) {
resistorValue = resistorValue * 100000;
}
else if(strcmp(resistorColorThree, "Blue") == 0) {
resistorValue = resistorValue * 1000000;
}
else if(strcmp(resistorColorThree, "Violet") == 0) {
resistorValue = resistorValue * 10000000;
}
}
| |