Нужно написать программу в с# либо исправить мой код, который работает некорректно, Все как в условии
using System;
namespace ConsoleApp3
{
class Program
{
public static void Main(string[] args)
{
const int n = 3, m=2;
int[] a = new int[n] { 1, 2, 3 };
double[] b = new double[m];
Console.WriteLine("Исходный массив");
for (int i = 0; i < n; i++)
{
Console.Write("{0} ", a[i]);
}
Console.WriteLine();
for (int i = 0; i < m; i++)
{
for (int j = 1; j <= n; j++)
{
b[i] += Math.Pow(a[j - 1], i + 1);
}
}
Console.WriteLine("Результат");
for (int i = 0; i < m; i++)
{
Console.Write("{0} ", b[i]);
Console.ReadKey();
}
}
}
}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.