blob: 2bdb3abe624a33d4c7ba381dfdd2f43a0238349a (
plain) (
blame)
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
|
// Lab5_Schroeder_TestScores.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include "Lab5Exercises.h"
int main()
{
cout << "10.6 Learn by Doing Exercises\n";
TenSix();
cout << "10.7 Learn by Doing Exercise\n";
TenSeven();
cout << "10.8_7 Exercises\n";
TenEight_Seven();
}
/*
#include<iostream>
using namespace std;
int main()
{
char firstName[20]{};
int i = 0;
cout << "Enter your name: ";
cin >> firstName; //just giving it a name
cout << " Your first name is: \n";
while (firstName[i] != '\0')
{
cout << &firstName[i] << endl; //&
i++;
}
}
*/
|