Program.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ProgrammmF0rFlekSSS
  7. {
  8. class Roman
  9. {
  10. static public void Array ()
  11. {
  12. int[] arr = { 1, -2, 3, -4, 5 };
  13. Console.WriteLine("Исходный массив:");
  14. PrintArray(arr);
  15. for (int i = 0; i < arr.Length; i++)
  16. {
  17. if (arr[i] > 0)
  18. {
  19. arr[i] *= 2;
  20. }
  21. else if (arr[i] < 0)
  22. {
  23. arr[i] *= 3;
  24. }
  25. }
  26. Console.WriteLine("Массив после выполнения программы:");
  27. PrintArray(arr);
  28. Console.ReadKey();
  29. }
  30. static void PrintArray(int[] arr)
  31. {
  32. foreach (int i in arr)
  33. {
  34. Console.WriteLine(i + " ");
  35. }
  36. Console.WriteLine();
  37. }
  38. }
  39. internal class Program
  40. {
  41. static void Main(string[] args)
  42. {
  43. Roman.Array();
  44. }
  45. }
  46. }