Размещено 4 года назад по предмету
Информатика
от Egewikha1223
Программа не выдает ответ в чем ошибка? С#
Помогите пожалуйста очень нужно
using System;
namespace lab13_14
{
public class Massiv
{
static int Vvod()
{
Console.WriteLine("Введите 1-ый эмемент:");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите 2-oй эмемент:");
int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите 3-ий эмемент:");
int c = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите 4-ый эмемент:");
int d = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите 5-ый эмемент:");
int i = Convert.ToInt32(Console.ReadLine());
return a + b + c + d + i;
}
static int Summa()
{
int sum = Vvod();
return sum;
}
static string Vivod()
{
int s = Summa();
return $"Сумма равна {s}";