користувач вводить число. Якщо введене число парне, то потрібно знайти суму чисел, попереднє це число, якщо непарна - знайти їх добуток
using System; namespace ConsoleApplication7 { class Program { static void Main(string[] args) { int[] str = new int[5] {1,2,3,4,5}; int n = Convert.ToInt32(str.Length); int sum = 0, pr = 1; for (int i = 1; i < n; i++) { Console.Write(str[i] + " "); } Console.WriteLine(); Console.Write("введіть ціле число: "); int a = Convert.ToInt32(Console.ReadLine()); for (int i=0; i<n; i++){ if ((a % 2 == 0) && (str[i] < a)) { sum += str[i]; } if ((a % 2!=0) && (str[i]<a)) { pr *= str[i]; } }Console.WriteLine("cума ел-в меньше " + a + ": " + sum); Console.WriteLine("добуток ел-в меньше " + a + ": " + pr); Console.ReadKey(); } } }
Комментариев нет:
Отправить комментарий