#include <iostream> // подключаем библиотеки
#include <cstdlib>
using namespace std; // глобальное пространство имён
int main()
{
setlocale(LC_ALL,"russian"); // русский язык
int tenge;
int number = 0;
cout << "Введите сумму Вашего вклада: ";
cin >> tenge;
if(tenge==200000) // если вклад 200000
cout << "Ваш доход составит 13,5% в год. ";
number = number+1;
}
if(tenge==350000) // если вклад 350000
cout << "Ваш доход составит 14,2% в год. ";
if(number==0) // если какая-то иная сумма
cout << "Требуется уточнить у менеджера процентную ставку для Вашей суммы вклада. Ожидайте.";
system("pause");
return 0; // код ошибки "0"
Задача 1:
using System;
using System.Linq;
namespace ConsoleApp1
internal class Program
private static void Main(string[] args)
Console.Write("Enter n: ");
int n = int.Parse(Console.ReadLine());
var x = new int[n];
var rand = new Random();
for (int i = 0; i < n; i++)
x[i] = rand.Next(-100, 100);
Console.WriteLine($"x[{i}] = {x[i]}");
int max = x.Max();
int index = Array.IndexOf(x, max);
for (int i = 0; i < index; i++)
if (x[i] < 0)
x[i] = 0;
Console.WriteLine("\nResult:");
Задача 2:
namespace ConsoleApp2
var a = new int[n];
a[i] = rand.Next(-100, 100);
Console.WriteLine($"x[{i}] = {a[i]}");
int[] positiveItems = a.Where(t => t > 0).ToArray();
if (positiveItems.Length == 0)
Console.WriteLine("No positive numbers");
return;
int sum = positiveItems.Sum();
int product = positiveItems.Aggregate((x, y) => x * y);
double arithmeticMean = sum / (double)positiveItems.Length;
double geometricMean = Math.Pow(product, 1 / (double)positiveItems.Length);
Console.WriteLine($"\nArithmetic mean: {arithmeticMean}");
Console.WriteLine($"Geometric mean: {geometricMean}");
#include <iostream> // подключаем библиотеки
#include <cstdlib>
using namespace std; // глобальное пространство имён
int main()
{
setlocale(LC_ALL,"russian"); // русский язык
int tenge;
int number = 0;
cout << "Введите сумму Вашего вклада: ";
cin >> tenge;
if(tenge==200000) // если вклад 200000
{
cout << "Ваш доход составит 13,5% в год. ";
number = number+1;
}
if(tenge==350000) // если вклад 350000
{
cout << "Ваш доход составит 14,2% в год. ";
number = number+1;
}
if(number==0) // если какая-то иная сумма
{
cout << "Требуется уточнить у менеджера процентную ставку для Вашей суммы вклада. Ожидайте.";
}
system("pause");
return 0; // код ошибки "0"
}
Задача 1:
using System;
using System.Linq;
namespace ConsoleApp1
{
internal class Program
{
private static void Main(string[] args)
{
Console.Write("Enter n: ");
int n = int.Parse(Console.ReadLine());
var x = new int[n];
var rand = new Random();
for (int i = 0; i < n; i++)
{
x[i] = rand.Next(-100, 100);
Console.WriteLine($"x[{i}] = {x[i]}");
}
int max = x.Max();
int index = Array.IndexOf(x, max);
for (int i = 0; i < index; i++)
{
if (x[i] < 0)
x[i] = 0;
}
Console.WriteLine("\nResult:");
for (int i = 0; i < n; i++)
Console.WriteLine($"x[{i}] = {x[i]}");
}
}
}
Задача 2:
using System;
using System.Linq;
namespace ConsoleApp2
{
internal class Program
{
private static void Main(string[] args)
{
Console.Write("Enter n: ");
int n = int.Parse(Console.ReadLine());
var a = new int[n];
var rand = new Random();
for (int i = 0; i < n; i++)
{
a[i] = rand.Next(-100, 100);
Console.WriteLine($"x[{i}] = {a[i]}");
}
int[] positiveItems = a.Where(t => t > 0).ToArray();
if (positiveItems.Length == 0)
{
Console.WriteLine("No positive numbers");
return;
}
int sum = positiveItems.Sum();
int product = positiveItems.Aggregate((x, y) => x * y);
double arithmeticMean = sum / (double)positiveItems.Length;
double geometricMean = Math.Pow(product, 1 / (double)positiveItems.Length);
Console.WriteLine($"\nArithmetic mean: {arithmeticMean}");
Console.WriteLine($"Geometric mean: {geometricMean}");
}
}
}