GeorgeTask.cs 869 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ydDost1
  7. {
  8. internal class GeorgeTask
  9. {
  10. public static void TaskG()
  11. {
  12. Console.WriteLine("Напишите разрядность массива");
  13. int N = Convert.ToInt32(Console.ReadLine());
  14. int[] Array = new int[N];
  15. for (int i = 0; i < N; i++)
  16. {
  17. Array[i] = Convert.ToInt32(Console.ReadLine());
  18. }
  19. for (int i = 0;i < N; i++)
  20. {
  21. if (i % 2 == 0)
  22. {
  23. Array[i] *= 2;
  24. }
  25. else Array[i] *= 3;
  26. }
  27. for(int i = 0; i < N;i++)
  28. {
  29. Console.Write(Array[i]);
  30. }
  31. }
  32. }
  33. }