1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ydDost1
- {
- internal class GeorgeTask
- {
- public static void TaskG()
- {
- Console.WriteLine("Напишите разрядность массива");
- int N = Convert.ToInt32(Console.ReadLine());
- int[] Array = new int[N];
- for (int i = 0; i < N; i++)
- {
- Array[i] = Convert.ToInt32(Console.ReadLine());
- }
- for (int i = 0;i < N; i++)
- {
- if (i % 2 == 0)
- {
- Array[i] *= 2;
- }
- else Array[i] *= 3;
- }
- for(int i = 0; i < N;i++)
- {
- Console.Write(Array[i]);
- }
- }
- }
- }
|