1-) I was able to come halfway through my project I need help for the other half 2-) You Can Find Detail What You Need To Do In Part 2 Of The Image File I Sent You The code I wrote is as follows: #include #include #include using namespace std; int main() { srand(time(0)); int x,y,a[10]; int arr[100][100]; cout<<"Tombala cards are preparing \n"; for(int i = 0; i < 10; ++i){ cout<<"\n"; cout<<"Kart No"<>x; cout<<"\nSelected card number for the players: \n"; for(int i=0;i>a[i]; } for(int i=0;i
1-) I was able to come halfway through my project I need help for the other half
2-) You Can Find Detail What You Need To Do In Part 2 Of The Image File I Sent You
The code I wrote is as follows:
#include<iostream>
#include<stdlib.h>
#include<time.h>
using namespace std;
int main()
{
srand(time(0));
int x,y,a[10];
int arr[100][100];
cout<<"Tombala cards are preparing \n";
for(int i = 0; i < 10; ++i){
cout<<"\n";
cout<<"Kart No"<<i<<": ";
for(int j = 0; j < 15; ++j){
arr[i][j]=(rand() %90 ) + 1;
cout<<arr[i][j]<<'\t';
}
}
cout<<"\n\nNumber of player: ";
cin>>x;
cout<<"\nSelected card number for the players: \n";
for(int i=0;i<x;i++){
cin>>a[i];
}
for(int i=0;i<x;i++){
cout<<"\n";
cout<<i<<". player's tombala card: ";
int g=a[i];
for(int j=0;j<15;j++){
cout<<arr[g][j]<<" ";
}
}
}
Step by step
Solved in 3 steps with 1 images