Объяснение:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace example
{
class Program
static void Main(string[] args)
int x, answer1, answer2;
Console.Write("Введите x : ");
x = int.Parse(Console.ReadLine());
answer1 = 2*x+3*Convert.ToInt32(Math.Pow(x,2))-4*Convert.ToInt32(Math.Pow(x,3));
answer2 = 1+2*x+3*Convert.ToInt32(Math.Pow(x,2))+4*Convert.ToInt32(Math.Pow(x,3));
Console.WriteLine("Значение первого выражения : " + answer1);
Console.WriteLine("Значение второго выражения : " + answer2);
Console.ReadLine();
}
#include <iostream>
int main(){
int n, m;
std :: cin >> n >> m;
int array[109][109];
for (int i = 0; i<n; ++i){
for (int j = 0; j<m; ++j)
if (i==0 || i%2==0) std :: cin >> array[i+1][j];
else std :: cin >> array[i-1][j];
for (int i=0; i<n; ++i){
for (int j= 0; j<m; ++j)
std :: cout << array[i][j]<< ' ';
std :: cout << std :: endl;
Объяснение:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace example
{
class Program
{
static void Main(string[] args)
{
int x, answer1, answer2;
Console.Write("Введите x : ");
x = int.Parse(Console.ReadLine());
answer1 = 2*x+3*Convert.ToInt32(Math.Pow(x,2))-4*Convert.ToInt32(Math.Pow(x,3));
answer2 = 1+2*x+3*Convert.ToInt32(Math.Pow(x,2))+4*Convert.ToInt32(Math.Pow(x,3));
Console.WriteLine("Значение первого выражения : " + answer1);
Console.WriteLine("Значение второго выражения : " + answer2);
Console.ReadLine();
}
}
}
#include <iostream>
int main(){
int n, m;
std :: cin >> n >> m;
int array[109][109];
for (int i = 0; i<n; ++i){
for (int j = 0; j<m; ++j)
{
if (i==0 || i%2==0) std :: cin >> array[i+1][j];
else std :: cin >> array[i-1][j];
}
}
for (int i=0; i<n; ++i){
for (int j= 0; j<m; ++j)
{
std :: cout << array[i][j]<< ' ';
}
std :: cout << std :: endl;
}
}