Ответ:
C#
using System;
namespace ConsoleApp1
{
class Program
static void Main(string[] args)
int n;
bool b = false;
Console.Write("Введите n: ");
n = Convert.ToInt32(Console.ReadLine());
int[] A = new int[n];
Console.WriteLine("Введите массив: ");
for (int i = 0; i < n; i++)
A[i] = Convert.ToInt32(Console.ReadLine());
if (A[i] == 30) b = true;
}
Console.WriteLine("В массиве "+(b ? "есть" : "нет")+" числ"+ (b ? "о" : "а") + " 30");
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
C#
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int n;
bool b = false;
Console.Write("Введите n: ");
n = Convert.ToInt32(Console.ReadLine());
int[] A = new int[n];
Console.WriteLine("Введите массив: ");
for (int i = 0; i < n; i++)
{
A[i] = Convert.ToInt32(Console.ReadLine());
if (A[i] == 30) b = true;
}
Console.WriteLine("В массиве "+(b ? "есть" : "нет")+" числ"+ (b ? "о" : "а") + " 30");
}
}
}