-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProblemJ2.cpp
More file actions
79 lines (66 loc) · 1.46 KB
/
Copy pathProblemJ2.cpp
File metadata and controls
79 lines (66 loc) · 1.46 KB
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
/*
Jingi Min
CIS 22A 2023 Fall
Laboratory Assignment J
ProblemJ2
Get numbers from user and print it
*/
#include <iostream>
using namespace std;
vector<double> input();
void output(vector<double> printVector);
int main()
{
vector<double> userData;
cout << "First test" << endl;
userData = input();
output(userData);
cout << "Second test" << endl;
userData = input();
output(userData);
return 0;
}
/******************************
Function: ask how many numbers user wants to input and get numbers
Parameter: none
return: double type vector
*******************************/
vector<double> input()
{
vector<double> userInput;
int count;
double number;
cout << "How many numbers you want to enter: ";
cin >> count;
cout << "Input numbers: ";
for (int i = 0; i < count; ++i)
{
cin >> number;
userInput.push_back(number);
}
return userInput;
}
/******************************
Function: get vector from main function and print it
Parameter: double type vector
return: none
*******************************/
void output(vector<double> printVector)
{
for (int i = 0; i < printVector.size(); ++i)
{
cout << printVector[i] << " ";
}
cout << endl;
}
/*
Execution results:
First test
How many numbers you want to enter: 3
Input numbers: 1.1 2.2 3.3
1.1 2.2 3.3
Second test
How many numbers you want to enter: 5
Input numbers: 5.1 6.1 7.1 8.1 9.1
5.1 6.1 7.1 8.1 9.1
*/