using System;
namespace ConsoleApp1
{
class Program
static void Main(string[] args)
double a, b, c;
Console.WriteLine("Введите a:");
a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите b:");
b = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите c:");
c = Convert.ToDouble(Console.ReadLine());
Console.Write("Результат: {0} , {1}, {2}", (a > 0) ? a * a : a * a * a * a,
(b > 0) ? b * b : b * b * b * b, (c > 0) ? c * c : c * c * c * c);
}
#include <iostream>
#include <iomanip>
#include <ctime>
int main()
int i, j, s;
int A[5][5];
setlocale(LC_ALL, "Russian"); // Русский язык в консоли
// Формируем случайную матрицу:
srand(time(0));
for (i = 0; i < 5; i++)
for (j = 0; j < 5; j++)
A[i][j] = rand() % 5;
std::cout << std::setw(5) << A[i][j];
std::cout << std::endl;
s = 0;
if (A[i][j] == 0) s++;
std::cout << "Количество нулевых элементов в " << i+1 << " строке: " << s << std::endl;
return 0;
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
double a, b, c;
Console.WriteLine("Введите a:");
a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите b:");
b = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите c:");
c = Convert.ToDouble(Console.ReadLine());
Console.Write("Результат: {0} , {1}, {2}", (a > 0) ? a * a : a * a * a * a,
(b > 0) ? b * b : b * b * b * b, (c > 0) ? c * c : c * c * c * c);
}
}
}
#include <iostream>
#include <iomanip>
#include <ctime>
int main()
{
int i, j, s;
int A[5][5];
setlocale(LC_ALL, "Russian"); // Русский язык в консоли
// Формируем случайную матрицу:
srand(time(0));
for (i = 0; i < 5; i++)
{
for (j = 0; j < 5; j++)
{
A[i][j] = rand() % 5;
std::cout << std::setw(5) << A[i][j];
}
std::cout << std::endl;
}
for (i = 0; i < 5; i++)
{
s = 0;
for (j = 0; j < 5; j++)
{
if (A[i][j] == 0) s++;
}
std::cout << "Количество нулевых элементов в " << i+1 << " строке: " << s << std::endl;
}
return 0;
}