-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacademic_bookwork.cpp
executable file
·1854 lines (1796 loc) · 44.3 KB
/
academic_bookwork.cpp
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Var.cpp
#include<iostream>
using namespace std;
int main()
{
int Var;
int Var;
}
// String.cpp
int main()
{
string Name;
Name = "String";
cout << Name;
}
// length.cpp
double convertLength(double);
int main()
{
double input;
for (int counter = 1; counter <= 3; counter++)
{
cout << "Enter the number of inches: ";
cin >> input;
cout << endl << input << " is " << convertLength(input) << " centimers." << endl;
}
cout << endl;
system("pause");
return 0;
}
double convertLength(double input)
{
return input * 2.54;
}
// problem_350.cpp
int mystery(int, int);
int main()
{
int x;
int y;
cout << "Enter two integers: ";
cin >> x >> y;
cout << "The result is " << mystery(x,y) << endl;
system("pause");
return 0;
}
int mystery (int a, int b)
{
if (b==1)
return a;
else
return a + mystery(a, b-1);
}
// array_subtraction_test.cpp
int main()
{
unsigned short int intArray[] = {1,2,3,4,5,6,7,8,9,10};
cout << intArray[10 - 7];
cout << intArray[7-9];
system("pause");
}
// Hw6Extra.cpp
int main()
{
int Mover = 2;
do
{
cout << Mover << endl;
Mover = Mover + 2;
} while (Mover <= 40);
}
// WeirdVar.cpp
int main()
{
int IntVar = 444;
int Printing*IntVar = 10100010;
cout << Printing444 << endl;
}
// page_226_problem_2
int main()
{
int input;
int sum = 0;
int digit;
cout << "Enter an interger ";
cin >> input;
while (input > 0)
{
cout <<
input -= input * digit
cout << " ";
}
for (int t = 0; int )
}
// add.cpp
int main()
{
int Num1;
int Num2;
cout << "Enter the first number yo, \n";
cin >> Num1;
cout << "Enter the second number, damnit \n";
cin >> Num2;
cout << endl << endl << Num1 + Num2;
}
// while_loop.cpp
int main()
{
system("clear");
int Int;
cout << "Int 1-500 :";
cin >> Int;
while (Int <= 0 || Int > 500)
{
cout << "Wrong\nInt :";
cin >> Int;
}
cout << "You win";
}
// final_number.cpp
const string alp = "abcdefghijklmnopqrstuvwxyz";
int main() {
for (int a = 0; a < 26; a++)
for (int b = 0; b < 26; b++)
for (int c = 0; c < 26; c++)
cout << alp.at(a) << alp.at(b) << alp.at(c) << endl;
system("pause");
}
// final_grade.c
#include <stdio.h>
main()
{
system("clear");
float paper;
do
{
printf("Input the student's grade for the paper : ");
scanf("%f", &paper);
} while (paper < 0.0 || paper > 100.0); // no extra credit
float homework;
do
{
printf("Input the student's homework average : ");
scanf("%f", &homework);
} while (homework < 0.0 || homework > 100.0);
float project;
do
{
printf("Input the student's project grade : ");
scanf("%f", &project);
} while (project < 0.0 || project > 100.0);
printf("Final Grade : %d \n", (int)( paper + homework + project) / 3);
}
// final_grade.cpp
int main()
{
system("clear");
float paper;
do
{
std::cout << "Input the student's grade for the paper : ";
std::cin >> paper;
} while (paper < 0.0 || paper > 100.0); // no extra credit
float homework;
do
{
std::cout << "Input the student's homework average : ";
std::cin >> homework;
} while (homework < 0.0 || homework > 100.0);
float project;
do
{
std::cout << "Input the student's project grade : ";
std::cin >> project;
} while (project < 0.0 || project > 100.0);
std::cout << "Final Grade : " << (int)(paper + homework + project) / 3 << std::endl; // not rounded
return 0;
}
// functionPassing.cpp
double BigEquation(double FirstDouble, double SecondDouble, double ThirdDouble)
{
return FirstDouble + SecondDouble + ThirdDouble;
}
int main()
{
double FirstInput, SecondInput, ThirdInput;
cout << "Input the first number: ";
cin >> FirstInput;
cout << "Input the second number: ";
cin >> SecondInput;
cout << "Input the third number: ";
cin >> ThirdInput;
cout << "The big equation returned " << BigEquation(FirstInput, SecondInput, ThirdInput);
return 0;
}
// modulus.cpp
int main()
{
int Input1;
int Remain1;
system("clear");
cout << "Modulus even-odd testing!\n";
cout << "-------------------------\n";
cout << "Interger entered was: " ;
cin >> Input1;
Remain1 = Input1 % 2;
cout << "The modulus operator returned: " << Remain1 << "\n";
if (Remain1 == 0)
cout << "So...the provided interger: " << Input1 << " is even.";
else
cout << "So...the provided interger: " << Input1 << " is even.";
cout << "\n\n";
}
// VrMenu.cpp
int main()
{
system("clear");
cout << "---------------------------------------\n";
cout << "vortexrikers.primarydataloop\n";
cout << "---------------------------------------\n";
cout << "\n";
cout << "1. Quit and Clear the Screen\n";
cout << "2. Open up an Internet Browser\n";
cout << "3. Telnet to arbornet.org\n";
cout << "4. Play Doom 2\n";
cout << "5. Play Diablo 2\n\n";
string Choice;
cout << "Enter the number of your selection, and press return: \n";
cin >> Choice;
if ( Choice == "1" )
system("clear");
else if ( Choice == "2" )
system("epiphany-bin");
else if ( Choice == "3" )
system("telnet arbornet.org");
else if ( Choice == "4" )
system("doom2");
else if ( Choice == "5" )
system("diablo2");
else
cout << "You entered and invalid selection.\n\n";
}
// array.cpp
int main()
{
int Array0[3];
Array0[0] = 1;
Array0[1] = 9;
cout << Array0[0] + Array0[1] << endl;
int Array1[10] = {1,2,3,4,5,6,7,8,9,10};
cout << Array1[0];
cout << Array1[1];
cout << Array1[2];
cout << Array1[3];
cout << Array1[4];
cout << Array1[5];
cout << Array1[6];
cout << Array1[7];
cout << Array1[8];
cout << Array1[9] << endl;
string Array2[10];
Array2[10] = {one, two, three, four, five, six, seven, eight, nine, ten};
cout << Array2[0] << endl;
cout << Array2[1] << endl;
cout << Array2[2] << endl;
cout << Array2[3] << endl;
cout << Array2[4] << endl;
cout << Array2[5] << endl;
cout << Array2[6] << endl;
cout << Array2[7] << endl;
cout << Array2[8] << endl;
cout << Array2[9] << endl;
}
// Hw402.cpp
int main()
{
float Sales = 1.0;
while (Sales > -1)
{
cout << "Enter the sales in dollars (-1 to end): ";
cin >> Sales;
if (Sales > -1)
{
cout << "Salary is: $" << 200.00 + (Sales * .09) << endl << endl;
}
}
}
// midterm.cpp
int main()
{
int i, number;
for (number = 1; number <= 5; number++)
{
cin >> i;
if (i == 0)
cout << i << " is zero\n";
else if (i > 0)
cout << i << " is positive\n";
else if (i < 0)
cout << i << " is negative\n";
}
system("PAUSE");
return 0;
}
// page_164_problem_240
int main()
{
int Input = 0;
int Sum = 0;
cout << "Enter number of values to add up to :";
cin >> Input;
cout << endl;
for (int Counter = 1; Counter <= Input; Counter++)
{
Sum = Sum + 100;
cout << Sum << " ";
}
cout << endl << endl;
}
// asterisks.cpp
void printAsterisks(unsigned int);
int main()
{
unsigned int input;
cout << "Enter the ammount of asterisks to print: ";
cin >>input;
printAsterisks(input);
cout << endl;
system("pause");
return 0;
}
void printAsterisks(unsigned int input)
{
for (int counter = 1; counter <= input; counter++)
{
cout << "*";
}
}
// hw123.cpp
int main()
{
int Num1;
int Num2;
cout << "Enter the first Interger : ";
cin >> Num1;
cout << endl;
cout << "Enter the second Interger : ";
cin >> Num2;
cout << endl;
cout << "Sum : " << Num1 + Num2 << endl;
cout << "Product : " << Num1 * Num2 << endl;
cout << "Difference " << Num1 - Num2 << endl;
cout << "Quotient : " << Num1 / Num2 << endl;
}
// average.cpp
double computeAverage(double,double,double,double,double);
int main()
{
double num1,num2,num3,num4,num5;
cout << "Input five numbers, each followed by hitting [ENTER]:" << endl;
cin >> num1 >> num2 >> num3 >> num4 >> num5;
cout << "The average is: " << computeAverage(num1,num2,num3,num4,num5) << endl;
cout << endl;
system("pause");
return 0;
}
double computeAverage(double num1, double num2, double num3, double num4, double num5)
{
return (num1 + num2 + num3 + num4 + num5) / 5;
}
// distance.cpp
#include <cmath>
const double Pie = 3.141592654;
int main()
{
double X1,X2,Y1,Y2,Radius,Circum,Area;
system("clear");
cout << "Enter the first X Coordinate: ";
cin >> X1;
cout << "Enter the first Y Coordinate: ";
cin >> Y1;
cout << "Enter the second X Coordinate: ";
cin >> X2;
cout << "Enter the second Y Coordinate: ";
cin >> Y2;
Radius = sqrt(pow((X2 - X1),2) + pow((Y2 - Y1),2));
Circum = 2 * Pie * Radius;
Area = Pie * pow(Radius,2);
cout << "\nThe Radius is " << Radius;
cout << "\nThe Circumfurence is " << Circum;
cout << "\nThe Area is " << Area << endl << endl;
}
// hw319.cpp
#include <cmath>
double Hypotenuse(double Side1, double Side2)
{
return sqrt(pow(Side1,2) + pow(Side2,2));
}
int main()
{
system("clear");
int Counter = 0;
double InSide1;
double InSide2;
while (Counter != 3)
{
cout << "Enter the length of side A: ";
cin >> InSide1;
cout << "Enter the length of side B: ";
cin >> InSide2;
cout << "The hypotenuse is: " << Hypotenuse(InSide1, InSide2) << endl << endl;
Counter++;
}
return 0;
}
// hw319.cpp
#include <cmath>
double Hypotenuse(double Side1, double Side2)
{
return sqrt(pow(Side1,2) + pow(Side2,2));
}
int main()
{
system("clear");
int Counter = 0;
double InSide1;
double InSide2;
while (Counter != 3)
{
cout << "Enter the length of side A: ";
cin >> InSide1;
cout << "Enter the length of side B: ";
cin >> InSide2;
cout << "The hypotenuse is: " << Hypotenuse(InSide1, InSide2) << endl << endl;
Counter++;
}
return 0;
}
// Hw126.cpp
int main()
{
int Num1;
int Num2;
int Num3;
cout << "Input three different intergers : \n\n";
cin >> Num1;
cin >> Num2;
cin >> Num3;
cout << "\nSum is " << Num1 + Num2 + Num3 << endl;
cout << "Average is " << (Num1 + Num2 + Num3) / 3 << endl ;
cout << "Product is " << Num1 * Num2 * Num3 << endl;
if (Num1 > Num2 && Num1 > Num3)
{
cout << "Largest is " << Num1 << endl;
}
else if (Num2 > Num1 && Num2 > Num3)
{
cout << "Largest is " << Num2 << endl;
}
else if (Num3 > Num1 && Num3 > Num2)
{
cout << "Largest is " << Num3 << endl;
}
if (Num1 < Num2 && Num1 < Num3)
{
cout << "Smallest is " << Num1 << endl;
}
else if (Num2 < Num1 && Num2 < Num3)
{
cout << "Smallestt is " << Num2 << endl;
}
else if (Num3 < Num1 && Num3 < Num2)
{
cout << "Smallest is " << Num3 << endl;
}
}
// template.cpp
template <class myType>
myType AddTwo(myType a, myType b) { return a + b; }
template <class myType>
myType MultiplyTwo(myType a, myType b) { return a * b; }
int main() {
system("clear");
int inputInt;
double inputDouble;
std::cout << "I want an Int : ";
std::cin >> inputInt;
std::cout << "Give me a Double : ";
std::cin >> inputDouble;
std::cout << "\n Sum is : " << AddTwo<double>(inputDouble, inputInt)
<< "\n Product is : " << MultiplyTwo<double>(inputDouble, inputInt) << "\n"
<< std::endl;
system("pause");
return 0;
}
// words.cpp
#include <string>
int FindWords(string);
int main()
{
string input;
do
{
cout << "Input a string : ";
cin >> input;
} while (input.empty());
cout << "Number of words : " << FindWords(input);
system("pause");
}
int FindWords(string working)
{
bool found = false;
short words = 0, pos = 0;
do
{
while (working.substr(pos, 1) == ' ')
pos++;
while (working.substr(pos, 1) != ' ')
{
pos++;
found = true;
}
if (found)
{
words++;
found = false;
}
} while (pos != working.length());
return words;
}
// make_change.cpp
const int Halfdollar = 50;
const int Quarter = 25;
const int Dimes = 10;
const int Nickel = 5;
int main()
{
int change;
cout << "enter change in cents: ";
cin >> change;
cout << "the change you entered is " << change
<< endl;
cout << "The number of halfdollars to be returned "
<< "is " << change / Halfdollar << endl;
change = change % Halfdollar;
cout << " The number of quarters to be returned is "
<< change / Quarter << endl;
change = change % Quarter;
cout << " The number of Dimes to be returned is "
<< change / Dimes << endl;
change = change % Dimes;
cout << " The number of Nickels to be returned is "
<< change / Nickel<< endl;
change = change % Nickel;
cout << "The number of pennies to be returned is "
<< change << endl;
system ("pause");
return 0;
}
// biggest_thing.cpp
int findLargest(int, int);
int swapNumber(int, int);
int main()
{
int a, b;
cout << "Enter three intergers: ";
cin >> a >> b;
findLargest(a, b);
cout << "The largest number is: " << a << endl;
cout << "The smallest number is: " << b << endl;
return 0;
}
int findLargest(int &a, int &b)
{
if (a < b)
{
swapNumber(a, b);
}
}
void swapNumber(int &a, int &b)
{
int temp;
temp = a;
a = b;
b = temp;
}
// Hw325.cpp
int quotient(int a, int b)
{
return a / b;
}
int remainder(int a, int b)
{
return a % b;
}
void worker(int choice)
{
if (choice >= 10000)
{
cout << quotient(choice, 10000) << " ";
choice = remainder(choice, 10000);
}
if (choice >= 1000)
{
cout << quotient(choice, 1000) << " ";
choice = remainder(choice, 1000);
}
if (choice >= 100)
{
cout << quotient(choice, 100) << " ";
choice = remainder(choice, 100);
}
if (choice >= 10)
{
cout << quotient(choice, 10) << " ";
choice = remainder(choice, 10);
}
if (choice >= 1)
{
cout << quotient(choice, 1) << " ";
choice = remainder(choice, 1);
}
}
int main()
{
system("cls");
int selection;
cout << "Enter and interger between 1-32767: ";
cin >> selection;
worker(selection);
cout << "\n\n";
}
// prob415.cpp
int main()
{
int input;
int numbers[20] = {0};
system("clear");
for (int counter = 0; counter < 20; counter++)
{
input = 0;
cout << "Input Number (10-100):";
while (input < 10 || input > 100)
{
cin >> input;
}
if (numbers[0]==input||numbers[1]==input||numbers[2]==input||numbers[3]==input||numbers[4]==input||numbers[5]==input||
numbers[6]==input||numbers[7]==input||numbers[8]==input||numbers[9]==input||numbers[10]==input||
numbers[11]==input||numbers[12]==input||numbers[13]==input||numbers[14]==input||numbers[15]==input||
numbers[16]==input||numbers[17]==input||numbers[18]==input||numbers[19]==input)
{
numbers[counter];
cout << "That number was already entered." << endl << endl;
}
else
{
numbers[counter] = input;
cout << input << " was entered." << endl << endl;
}
}
system("pause");
return 0;
}
// Hw401.cpp
int main()
{
float Gallons = 1.0;
float Miles;
float Counter = 0.0;
float Overall;
float Averages = 0.0;
while (Gallons > -1)
{
cout << "Enter the gallons used (-1 to end): ";
cin >> Gallons;
if (Gallons > -1)
{
cout << "Enter the miles driven: ";
cin >> Miles;
Overall = Miles / Gallons;
cout << "The miles / gallon for this tank was " << Overall << endl << endl;
Averages = Averages + Overall;
Counter = Counter + 1.0;
}
else
{
Gallons = -4444.4444;
}
}
cout << "\nThe overall average miles/gallon was " << Averages / Counter << endl << endl;
}
// io_tests.cpp
int main()
{
int varInt1;
int varInt2;
int varIntTotal;
std::cout << "==============================================================\n";
std::cout << "1. varInt1 is...\n";
std::cin >> varInt1;
std::cout << "\n2. varInt2 is...\n";
std::cin >> varInt2;
std::cout << "\nAdding...\n";
varIntTotal = varInt1 + varInt2;
std::cout << "\nTotal Interger is ...\n";
std::cout << varIntTotal << "\n";
if ( varIntTotal >= 99 )
std::cout << "\nYour number is more than 100...
else
std::cout << "\nSo...\nYour number is not more than 100...";
std::cout << "\n============================================================";
std::cout << "\n\n-Done-\n";
return 0;
}
// timeConversion.cpp
int TC(int);
char ap(int);
int main()
{
int hours = -2;
system("cls");
while (hours < -1 || hours > 23)
{
cout << "Please input the hours in military time (-1 to quit): ";
cin >> hours;
if (hours < -1 || hours > 23)
{
cout << "That number is not valid." << endl << endl;
}
}
if (hours > -1 && hours < 23)
{
cout << hours << " hours is " << TC(hours) << ":00 "<< ap(hours) << endl;
}
system("pause");
return 0;
}
int TC(int hours)
{
if (hours == 0)
{
return 12;
}
else if (hours < 12)
{
return hours;
}
else if (hours == 12)
{
return 12;
}
else if (hours > 12)
{
return hours -12;
}
}
char ap(int hours)
{
if (hours < 12)
{
return 'A';
}
else
{
return 'P';
}
}
// lab1bRevised.cpp
int main()
{
int code;
int errorCt = 0;
int sum = 0;
char response;
do
{
cout << "Enter an integer value: ";
cin >> code;
switch(code)
{
case 10:
cout << "Small" << endl;
break;
case 20:
case 25:
case 30:
cout << "Medium" << endl;
sum = sum + code;
break;
case 41:
cout << "Large" << endl;
break;
default:
cout << "Error\n";
errorCt++;
}
cout << "Do you want to continue (y/n) ?";
cin >> response;
} while (response == 'y');
cout << "\nSum of medium codes is " << sum << endl;
cout << "Error count is " << errorCt << endl;
cout << endl;
system("pause");
return 0;
}
// lab04A.cpp
const int SIZE = 10;
void Fill(int[], int);
int Sum50s(const int[], int);
void PrintReverse(const int[], int);
int main()
{
int numAr[SIZE];
int sumOf50s;
Fill(numAr, SIZE);
sumOf50s = Sum50s(numAr, SIZE);
cout << endl << endl << "Sum of values in the 50's is " << sumOf50s << endl << endl << endl;
PrintReverse(numAr, SIZE);
cout << endl;
system("pause");
return 0;
}
void Fill(int numAr[], const int SIZE)
{
for (int counter = 0; counter < SIZE; counter++)
{
cout << "Enter an interger #" << counter + 1 << " : ";
cin >> numAr[counter];
}
}
int Sum50s(const int numAr[], int SIZE)
{
int sum = 0;
for (int counter = 0; counter < SIZE; counter++)
{
if (numAr[counter] > 49 && numAr[counter] < 60)
{
sum = sum + numAr[counter];
}
}
return sum;
}
void PrintReverse(const int numAr[], int SIZE)
{
for (int counter = SIZE; counter > 0; counter--)
{
cout << "Interger #" << counter << " has the value: " << numAr[counter - 1] << endl;
}
}
// ShellDr.cpp
#include "distanceclass.h"
void PrintDistance(DistanceClass);
int main()
{
DistanceClass dist1, dist2, dist3, dist4;
int milesIn, yardsIn, feetIn;
system("clear");
PrintDistance(dist1);
cout << endl;
cout << "Enter a length in yards to convert: ";
cin >> yardsIn;
dist2.ConvertYards(yardsIn);
PrintDistance(dist2);
cout << endl;
cout << "Enter a length in feet to convert: ";
cin >> feetIn;
dist2.ConvertFeet(feetIn);
PrintDistance(dist3);
cout << endl << "Enter a length in miles, yards and feet \n";
cin >> milesIn >> yardsIn >> feetIn;
dist1.Set(milesIn, yardsIn, feetIn);
cout << endl << "Enter a 2nd length in miles, yards and feet \n";
cin >> milesIn >> yardsIn >> feetIn;
dist2.Set(milesIn, yardsIn, feetIn);
dist4 = dist1.AddDistance(dist2);
cout << "Sum is:\n";
PrintDistance(dist4);
cout << endl << endl;
system("pause");
return 0;
}
void PrintDistance(DistanceClass distance)
{
cout << distance.MilesAre() << " miles " << distance.YardsAre() << " yards "
<< distance.FeetAre() << " feet" << endl << endl;
}
// DistanceClass interface.
class DistanceClass
{
public:
DistanceClass();
int FeetAre() const;
int YardsAre() const;
int MilesAre() const;
void Set(int, int, int);
void ConvertYards(int);
void ConvertFeet(int);
DistanceClass AddDistance(DistanceClass) const;
private:
int miles;
int yards;
int feet;
};
// DistanceClass.cpp
#include "distanceclasss.h"
DistanceClass::DistanceClass()
{
miles,yards,feet = 0;
}
int DistanceClass::FeetAre() const
{
return feet;
}
int DistanceClass::YardsAre() const
{
return yards;
}
int DistanceClass::MilesAre() const
{
return miles;
}
void DistanceClass::Set(int mi, int yds, int ft)
{
miles = mi;
yards = yds;
feet = ft;
}
void DistanceClass::ConvertYards(int conYards)
{
miles = conYards / 1760;
yards = conYards % 1760;
}
void DistanceClass::ConvertFeet(int conFeet)
{
miles = conFeet / 5180;
yards = (conFeet % 5180) / 3;
feet = conFeet * 3;
}
DistanceClass DistanceClass::AddDistance(DistanceClass distance1) const
{
DistanceClass toReturn;
int feetHold = feet + (yards * 3) + (miles * 5280) +
distance1.feet + (distance1.yards * 3) + (distance1.miles * 5280);
toReturn.ConvertFeet(feetHold);
return toReturn;
}
// Complex.h
class Complex
{
public:
Complex(double = 0, double = 0);
Complex Add(Complex);
Complex Sub(Complex);
void Print(Complex);
private:
double real;
double imag;
};