C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
icon
Related questions
Question
In c++
7.11 LAB: Number pattern
Write a recursive function called PrintNumPattern() to output the following number pattern.
Given a positive integer as input (Ex: 12), subtract another positive integer (Ex: 3) continually until a negative value is reached, and then
continually add the second integer until the first integer is again reached. For this lab, do not end output with a newline.
Ex. If the input is:
12
3
the output is:
12 9 6 3 0 3 0 3 6 9 12
450942.2771164.qx3zg/7
LAB
ACTIVITY
1 #include <iostream>
2
3 using namespace std;
7.11.1: LAB: Number pattern
4
5 // TODO: Write recursive Print NumPattern() function
6
7 int main() {
8
9
10
11
12
13
14
15
16 }
int numi
int num2;
cin >> num1;
cin >> num2;
PrintNumPattern (num1, num2);
return 0;
Develop mode
Submit mode
main.cpp
Enter program input (optional)
If your code requires input values, provide them here.
0/10
Load default template...
Run your program as often as you'd like, before submitting for grading. Below, type any needed
input values in the first box, then click Run program and observe the program's output in the
second box.
"
Transcribed Image Text:7.11 LAB: Number pattern Write a recursive function called PrintNumPattern() to output the following number pattern. Given a positive integer as input (Ex: 12), subtract another positive integer (Ex: 3) continually until a negative value is reached, and then continually add the second integer until the first integer is again reached. For this lab, do not end output with a newline. Ex. If the input is: 12 3 the output is: 12 9 6 3 0 3 0 3 6 9 12 450942.2771164.qx3zg/7 LAB ACTIVITY 1 #include <iostream> 2 3 using namespace std; 7.11.1: LAB: Number pattern 4 5 // TODO: Write recursive Print NumPattern() function 6 7 int main() { 8 9 10 11 12 13 14 15 16 } int numi int num2; cin >> num1; cin >> num2; PrintNumPattern (num1, num2); return 0; Develop mode Submit mode main.cpp Enter program input (optional) If your code requires input values, provide them here. 0/10 Load default template... Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box. "
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 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