Need help with example 7, written in c++. Please and thank you

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter12: Points, Classes, Virtual Functions And Abstract Classes
Section: Chapter Questions
Problem 29SA
icon
Related questions
Question
Need help with example 7, written in c++. Please and thank you
unction
10:28
all 32%
Example 6
Sort the following array in
an ascending order. int
array {32, 23, 43, 21, 39,
31, 15, 34, 38, 14}. Use
the algorithm given on the
last slide.
1 / Example
// Sort array in ascending order
tinclude ciostrean
4 laclude cstring
using nanespace std,
int main()
int a[10)-(32, 23, 43, 21, 39, 31, 15, 34, 38, 14);
Int tene; //for spping
10
for(int i-e; ic1e; i
11-
12
for(int 1-1+1; k10:1++)(//compare with next elenent onards
teno-al1):
/SAP process starts
(/store fiest elesest
14
15
I/store the second element into first
(/store the temp (has first) Into second
I/Elements are sapped
als)-temp
18
19
20
21
22
23 )
I/print serted array
for(int ie; i1e; i)
coute ca[1k :
12
Example 7
• Rewrite example 6 and make the sorting code as a function
fSortAsc(array, length). This function will also print the
sorted array. Call this function in main (). Use the same array
as in example 6. Here is a portion of what the main () looks
like for this example. Hint: move the sort code from example 6
to the function fSortAsc.
I/ MB Example 7
I/ Sort array function
include clostream
tinclude string
susing namespace std;
vodd fSortasc(int al), int length),
int mainO
int a[10)-(32, 23, 43, 21, 39, 31, 15, 34, 18, 14);
fSortáscia, 1a);
10
11
13
12 }
13
Example 8
• Continue example 7 and add the sorting of the array in
descending order as a function fSortDesc(array,length).
This function will also print the sorted array. Call this function
in main. Use the same array as in example 6. The main() must
look like this.
I H Ecample a
/ Sort array function
3 tinelude ciestream
4 Binclude cstring
using nanespace std;
veld fSortasc(int all, Int length);
7 void fSortDesc(int all, int length);
9 int nain()
19-
int a[101-(32, 23, 43, 21, 39, 31, 15, 34, 38, 14);
12 Sortáscia, 10)
ceutccendl;
14 Sortbesc(a,10):
15 }
11
14
14
Matrices- two dimensional arrays
A matrix is a table with rows and columns
Transcribed Image Text:unction 10:28 all 32% Example 6 Sort the following array in an ascending order. int array {32, 23, 43, 21, 39, 31, 15, 34, 38, 14}. Use the algorithm given on the last slide. 1 / Example // Sort array in ascending order tinclude ciostrean 4 laclude cstring using nanespace std, int main() int a[10)-(32, 23, 43, 21, 39, 31, 15, 34, 38, 14); Int tene; //for spping 10 for(int i-e; ic1e; i 11- 12 for(int 1-1+1; k10:1++)(//compare with next elenent onards teno-al1): /SAP process starts (/store fiest elesest 14 15 I/store the second element into first (/store the temp (has first) Into second I/Elements are sapped als)-temp 18 19 20 21 22 23 ) I/print serted array for(int ie; i1e; i) coute ca[1k : 12 Example 7 • Rewrite example 6 and make the sorting code as a function fSortAsc(array, length). This function will also print the sorted array. Call this function in main (). Use the same array as in example 6. Here is a portion of what the main () looks like for this example. Hint: move the sort code from example 6 to the function fSortAsc. I/ MB Example 7 I/ Sort array function include clostream tinclude string susing namespace std; vodd fSortasc(int al), int length), int mainO int a[10)-(32, 23, 43, 21, 39, 31, 15, 34, 18, 14); fSortáscia, 1a); 10 11 13 12 } 13 Example 8 • Continue example 7 and add the sorting of the array in descending order as a function fSortDesc(array,length). This function will also print the sorted array. Call this function in main. Use the same array as in example 6. The main() must look like this. I H Ecample a / Sort array function 3 tinelude ciestream 4 Binclude cstring using nanespace std; veld fSortasc(int all, Int length); 7 void fSortDesc(int all, int length); 9 int nain() 19- int a[101-(32, 23, 43, 21, 39, 31, 15, 34, 38, 14); 12 Sortáscia, 10) ceutccendl; 14 Sortbesc(a,10): 15 } 11 14 14 Matrices- two dimensional arrays A matrix is a table with rows and columns
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning