Advertisement
mmayoub

nairuz home work

Oct 23rd, 2021
797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.46 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Random rnd = new Random();  // missing
  10.             int x;
  11.             int[] array; // int array[]  مصفوفة 1
  12.             int i, j; // missing
  13.             array = new int[6];
  14.             x = rnd.Next(36); // x = Random.next(36);
  15.                               //{
  16.             for (i = 0; i < 6; i++)
  17.             { //for (i = 0; i < 6; i++)  
  18.                 array[i] = rnd.Next(36); // Array[i] = random.next(36);
  19.             }
  20.             int[] a = new int[6]; // int a[] = new int[6]
  21.                                   //{
  22.                                   //   for (j = 0; j < 6; j++) a[j] = Console.readline();
  23.             for (j = 0; j < 6; j++)
  24.             {
  25.                 a[j] = int.Parse(Console.ReadLine());
  26.             }
  27.             //}
  28.             int count = 0; // count=0;  {
  29.  
  30.  
  31.             for (i = 0; i < 6; i++)
  32.             {
  33.                 for (j = 0; j < 6; j++)
  34.                 {
  35.                     // check if the two numbers from both arrays are equal
  36.                     // increase counter only if booth numbers are the same
  37.                     count++;
  38.                 }
  39.             }
  40.             //console.writeline(" the number of numbers you chose right :" + count)
  41.             Console.WriteLine(" the number of numbers you chose right :" + count); // missing ;
  42.         }
  43.     }
  44. }
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement