-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab5_Welton.cpp
48 lines (42 loc) · 1006 Bytes
/
Lab5_Welton.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
/*
Name: Lab5_Welton
Author: Christopher Welton
Description: This program takes a users first and last name, then prints it with a number value and increasing spaces.
*/
#include <iostream>
#include <string>
using namespace std;
void printSpaces(int spaces){
for(int i=0; i<spaces; i++){
cout << " ";
}
}
void process(string name){
int count = 1;
int frontNum = 1;
int spaceLocation = name.find(" ");
for(int i = 0; i < name.size(); i++){
if(i == spaceLocation){
frontNum = 2;
cout << "\n";
count ++;
continue;
}
cout << frontNum;
if(frontNum >= 10){
printSpaces(count -1);
} else {
printSpaces(count);
}
cout << char(toupper(name[i])) << endl;
frontNum += 2;
count ++;
}
}
int main(){
string name;
cout << "Please enter your name: " << endl;
getline(cin, name);
process(name);
return 0;
}