using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutoIT// AutoIT - это название проекта. Точно так же
// называть не нужно
{
internal class Program // можно вместо internal написать static.
//Явной разницы не будет
static void Main(string[] args)
int A, B;
A = int.Parse(Console.ReadLine());
B = int.Parse(Console.ReadLine());
int sum = 0;
for (int i = A; i <=B ; i++)
sum += (int)Math.Pow(i, 2);
}
Console.WriteLine(sum);
Console.ReadLine();
#include <iostream>
#define _USE_MATH_DEFINES
#include <math.h>
using namespace std;
int main()
setlocale(LC_ALL, "rus");
double a, b, c, x,z;
cout << "Введите х" << endl;
cin >> x;
a = log10(5);
b = cos((2 * M_PI) / 3);
c = exp(-sqrt(2));
if (x > c)
z = pow(log(1.5 * x), 2) + log(abs(b - a * c));
else
if (x < c)
z = asin((b * pow(c, 2)) / (sqrt(pow(a, 2) + pow(x, 2;
else z = sqrt(pow(x, 2) + pow(c, 2)) - (1 / tan(b * a));
cout << z << endl;
system("pause");
return 0;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutoIT// AutoIT - это название проекта. Точно так же
// называть не нужно
{
internal class Program // можно вместо internal написать static.
//Явной разницы не будет
{
static void Main(string[] args)
{
int A, B;
A = int.Parse(Console.ReadLine());
B = int.Parse(Console.ReadLine());
int sum = 0;
for (int i = A; i <=B ; i++)
{
sum += (int)Math.Pow(i, 2);
}
Console.WriteLine(sum);
Console.ReadLine();
}
}
}
#include <iostream>
#define _USE_MATH_DEFINES
#include <math.h>
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
double a, b, c, x,z;
cout << "Введите х" << endl;
cin >> x;
a = log10(5);
b = cos((2 * M_PI) / 3);
c = exp(-sqrt(2));
if (x > c)
{
z = pow(log(1.5 * x), 2) + log(abs(b - a * c));
}
else
{
if (x < c)
{
z = asin((b * pow(c, 2)) / (sqrt(pow(a, 2) + pow(x, 2;
}
else z = sqrt(pow(x, 2) + pow(c, 2)) - (1 / tan(b * a));
}
cout << z << endl;
system("pause");
return 0;
}