С++ :
1)
#include <iostream>
using namespace std;
int x,y,a;
int main()
{
cout << "Enter X and Y " << endl;
cin >> x >> y;
a=2*x + 18*y;
cout << "a = " << a;
}
2)
#include <cmath>
float a,b,c;
cout << "Enter A and B " << endl;
cin >> a >> b;
c=sqrt(pow(a , 2) + pow(b , 2));
cout << "c = " << c;
Комментарий :
Pascal :
program ideone;
uses crt;
var a,b,c:real;
begin
clrscr;
write('Введите А и В');
readln(a,b);
c:=sqrt(a*a + b*b);
writeln(c);
end.
var a,x,y:integer;
write('Введите X и Y ');
readln(x,y);
a:=2*x + 18*y;
writeln(a);
C++
#include <ctime>
int main() {
setlocale(LC_ALL, "Russian");
srand(time(NULL));
int arr[20],sum=0;
for (int i = 0; i < 20; i++)
arr[i] = rand() % 36+(-15);
cout << "Обычный массив -> ";
cout << arr[i] << " ";
cout << endl << "Элементы массива которые больше 10 ->";
if (arr[i]>10) {
cout << endl;
system("pause");
return 0;
Объяснение:
С++ :
1)
#include <iostream>
using namespace std;
int x,y,a;
int main()
{
cout << "Enter X and Y " << endl;
cin >> x >> y;
a=2*x + 18*y;
cout << "a = " << a;
}
2)
#include <iostream>
#include <cmath>
using namespace std;
float a,b,c;
int main()
{
cout << "Enter A and B " << endl;
cin >> a >> b;
c=sqrt(pow(a , 2) + pow(b , 2));
cout << "c = " << c;
}
Комментарий :
a,b - катеты, c - гипотенуза.pow(a,b) - возведение числа a в степень b ( аналогом может служить умножения переменной самой на себя)2)
Pascal :
program ideone;
uses crt;
var a,b,c:real;
begin
clrscr;
write('Введите А и В');
readln(a,b);
c:=sqrt(a*a + b*b);
writeln(c);
end.
1)
program ideone;
uses crt;
var a,x,y:integer;
begin
clrscr;
write('Введите X и Y ');
readln(x,y);
a:=2*x + 18*y;
writeln(a);
end.
C++
#include <iostream>
#include <ctime>
using namespace std;
int main() {
setlocale(LC_ALL, "Russian");
srand(time(NULL));
int arr[20],sum=0;
for (int i = 0; i < 20; i++)
{
arr[i] = rand() % 36+(-15);
}
cout << "Обычный массив -> ";
for (int i = 0; i < 20; i++)
{
cout << arr[i] << " ";
}
cout << endl << "Элементы массива которые больше 10 ->";
for (int i = 0; i < 20; i++)
{
if (arr[i]>10) {
cout << arr[i] << " ";
}
}
cout << endl;
system("pause");
return 0;
}
Объяснение: