-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOutput_Exercises.cpp
52 lines (44 loc) · 1.03 KB
/
Output_Exercises.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
//Written by: Artemis Solomon
//Welcome to C++: Output Exercise
//For this exercise you will be writing the entire program.
//Use the same steps from "Hello World!" module.
//Exercise 1:
//Write a program that outputs your name and your favorite color.
//Use the operator endl to create a new line.
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//Exercise 2:
//Write a program that outputs a paragraph.
//use endl to format the paragraph into 4 lines.
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//Exercise 3:
//Write a variation of "Hello World!" Practice the different ways to perform outputs.
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here
//code goes here