Advertisement
cuniszkiewicz

Array1d

Dec 11th, 2024
69
0
18 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.51 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Array_1d
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.Write("How many elements do you want to have: ");
  14.             int size = int.Parse(Console.ReadLine());
  15.            
  16.             int[] a = new int[size];
  17.             int[] b = new int[size];
  18.             int[] c = new int[size];
  19.             Console.WriteLine("Array a:");
  20.             for (int i = 0; i < a.Length; i++)
  21.             {
  22.                 Console.Write($"a[{i}]: ");
  23.                 a[i] = int.Parse(Console.ReadLine());
  24.             }
  25.             Console.WriteLine("Array b:");
  26.             for (int i = 0; i < a.Length; i++)
  27.             {
  28.                 Console.Write($"b[{i}]: ");
  29.                 b[i] = int.Parse(Console.ReadLine());
  30.             }
  31.             Console.Clear();
  32.             for (int i = 0; i < a.Length; i++)
  33.             {
  34.                 Console.Write($"{a[i]}, ");
  35.  
  36.             }
  37.             Console.WriteLine();
  38.             for (int i = 0; i < a.Length; i++)
  39.             {
  40.                 Console.Write($"{b[i]}, ");
  41.             }
  42.             Console.WriteLine(  );
  43.             Console.WriteLine("Array c = a + b:");
  44.             for (int i = 0; i < a.Length; i++)
  45.             {
  46.                 c[i] = a[i] + b[i];
  47.                 Console.Write($"{c[i]}, ");
  48.             }
  49.             Console.ReadKey();
  50.  
  51.         }
  52.     }
  53. }
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement