Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Quiz In this task, you are required to initialize two one dimensional arrays X and Y based on the user input. Both arrays are integer

Quiz In this task, you are required to initialize two one dimensional arrays X and Y based on the user input. Both arrays are integer arrays with 5 elements. The program should print on the screen the elements in X that appear in array Y.

In case all the elements in array X do not appear in array Y, then you should print None

Program Input: One line contains 10 integers seperated by line spaces where the first 5 elements will be stored in array X and the second 5 elements with be stored in array Y.

Program Output:

One line that contains all the elements in array X that appear in array Y separated by one space.

Sample Testcase 0: Input:

115 14 32 50 78 12 13 14 50 15 Output:

14 50 Sample Testcase 1: Input:

10 20 10 40 50 10 30 40 60 60 Output:

10 10 40 Sample Testcase 2: Input:

10 20 30 40 50 60 70 80 90 100 Output:

None #include using namespace std; int main(){ int X[5]; int Y[5]; /* your code starts here */

/* your code ends here */ return 0;

1 #include 2 using namespace std; 3 int main(){ 4 int X[5]; 5 int Y[5]; 6 /* your code starts here */ 7 8 9 /* your code ends here */ 10 return 0; 11 } Information Author(s) Dr. Samah & Dr. Mohammad Deadline 26/12/2020 20:25:00 Status Not yet attempted Grade 0.0% Grading weight 5.0 Attempts 0 Submission limit 12 submissions Submitting as Rahaf Oran Classroom : Default classroom For evaluation Best submission No submission Submission history

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions