2. Find the ring! by CodeChum Admin Thanks to you, my crush was impressed with my awesome display() function!!   I'm now planning to propose to her, but I need to find the best ring available in the market as she is truly special to me.   Can you help me find the ring that she wants?     Instructions: In the code editor, you are provided with the main() function that asks the user for 10 elements that represents the options for the ring as well as a single integer value that represents the ring that she wants. Then, a call to the findRing() function is made and the array of rings and the ring she wants are passed into it. Your task is to implement the findRing() function. This has the following details: Return type - int Name - findRing Parameters int* - for the array of rings int - size of the array of rings int - the ring that she wants Return value - the index of the ring in the array of rings. It is guaranteed that there is only one such ring that matches the ring that she wants. Input 1. Ten integer values representing the rings 2. Integer value representing the ring she wants Output Enter·option·#1:·5 Enter·option·#2:·3 Enter·option·#3:·10 Enter·option·#4:·9 Enter·option·#5:·13 Enter·option·#6:·11 Enter·option·#7:·20 Enter·option·#8:·25 Enter·option·#9:·4 Enter·option·#10:·3 Enter·the·ring·she·wants:·25   Ring·25·is·found·at·option·8!   EDIT THIS CODE: #include using namespace std; // TODO: Declare the findRing() here int main(void) {     int rings[10];     for(int i = 0; i < 10; i++) {         cout << "Enter option #" << i + 1 << ": ";         cin >> rings[i];     }     int wantedRing;     cout << "Enter the ring she wants: ";     cin >> wantedRing;     cout << endl << "Ring " << wantedRing << " is found at option " << findRing(rings, 10, wantedRing) + 1 << "!";     return 0; } // TODO: Define the findRing() here

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

2. Find the ring!

by CodeChum Admin

Thanks to you, my crush was impressed with my awesome display() function!!

 

I'm now planning to propose to her, but I need to find the best ring available in the market as she is truly special to me.

 

Can you help me find the ring that she wants?

 

 

Instructions:

  1. In the code editor, you are provided with the main() function that asks the user for 10 elements that represents the options for the ring as well as a single integer value that represents the ring that she wants. Then, a call to the findRing() function is made and the array of rings and the ring she wants are passed into it.
  2. Your task is to implement the findRing() function. This has the following details:
    1. Return type - int
    2. Name - findRing
    3. Parameters
      1. int* - for the array of rings
      2. int - size of the array of rings
      3. int - the ring that she wants
    4. Return value - the index of the ring in the array of rings. It is guaranteed that there is only one such ring that matches the ring that she wants.

Input

1. Ten integer values representing the rings

2. Integer value representing the ring she wants

Output

Enter·option·#1:·5
Enter·option·#2:·3
Enter·option·#3:·10
Enter·option·#4:·9
Enter·option·#5:·13
Enter·option·#6:·11
Enter·option·#7:·20
Enter·option·#8:·25
Enter·option·#9:·4
Enter·option·#10:·3
Enter·the·ring·she·wants:·25
 
Ring·25·is·found·at·option·8!
 
EDIT THIS CODE:

#include <iostream>
using namespace std;

// TODO: Declare the findRing() here


int main(void) {
    int rings[10];

    for(int i = 0; i < 10; i++) {
        cout << "Enter option #" << i + 1 << ": ";
        cin >> rings[i];
    }

    int wantedRing;
    cout << "Enter the ring she wants: ";
    cin >> wantedRing;

    cout << endl << "Ring " << wantedRing << " is found at option " << findRing(rings, 10, wantedRing) + 1 << "!";

    return 0;
}

// TODO: Define the findRing() here

3. int - the ring that she
main.cpp
< > + C++
wants
1 #include <iostream>
4. Return value - the index of
2 using namespace std;
the ring in the array of
3
rings. It is guaranteed that
4 |/ TODO: Declare the findRing() here
there is only one such ring
5
that matches the ring that
6
7 int main(void) {
int rings[10];
she wants.
8
9
for (int i = 0; i < 10; i++) {
cout <« "Enter option #" « i + 1 <« ": ";
cin >> rings[i];
}
10
Input
11
12
1. Ten integer values representing
the rings
13
14
int wantedRing;
cout <« "Enter the ring she wants: ";
cin >> wantedRing;
15
2. Integer value representing the
16
ring she wants
17
18
Output
19
cout <« endl « "Ring " <« wantedRing << " is found at option " <«
« findRing(rings, 10, wantedRing) + 1 <«
20
21
return 0;
22 }
Enter option #1: 5
23
Enter option #2: 3
24 // TODO: Define the findRing() here
Enter option #3: 10
Enter option #4: 9
Enter option #5: 13
Enter option #6: 11
Enter option #7: 20
Enter option #8: 25
Enter option #9: 4
Enter option #10: 3
Enter the ring she wants: 25
Ring 25 is found at option 8!
Transcribed Image Text:3. int - the ring that she main.cpp < > + C++ wants 1 #include <iostream> 4. Return value - the index of 2 using namespace std; the ring in the array of 3 rings. It is guaranteed that 4 |/ TODO: Declare the findRing() here there is only one such ring 5 that matches the ring that 6 7 int main(void) { int rings[10]; she wants. 8 9 for (int i = 0; i < 10; i++) { cout <« "Enter option #" « i + 1 <« ": "; cin >> rings[i]; } 10 Input 11 12 1. Ten integer values representing the rings 13 14 int wantedRing; cout <« "Enter the ring she wants: "; cin >> wantedRing; 15 2. Integer value representing the 16 ring she wants 17 18 Output 19 cout <« endl « "Ring " <« wantedRing << " is found at option " <« « findRing(rings, 10, wantedRing) + 1 <« 20 21 return 0; 22 } Enter option #1: 5 23 Enter option #2: 3 24 // TODO: Define the findRing() here Enter option #3: 10 Enter option #4: 9 Enter option #5: 13 Enter option #6: 11 Enter option #7: 20 Enter option #8: 25 Enter option #9: 4 Enter option #10: 3 Enter the ring she wants: 25 Ring 25 is found at option 8!
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Array
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education