Краснодар, Красноярск, Калуга, Казань
Добрый день.Это технология которая позволяет отсканировать книгу без участия человека Удачи)
// PascalABC.NET 3.1, сборка 1230 от 27.04.2016
begin
var a:=1.Step(2).Take(10).ToArray; a.Println;
var b:=ArrRandom(10,5,15); b.Println
end.
<u><em>Тестовое решение</em></u>
1 3 5 7 9 11 13 15 17 19
14 5 13 6 10 9 15 9 14 5
#include <iostream>
<span>using namespace std;</span>
<span>int main()</span>
{
setlocale(LC_ALL,"");
double R,S;
cout<<"Введите радиус окружности: ";
cin>>R;
S=3.14*R*R;
cout<<"Площадь круга = "<<S<<""<<endl;
return 0;
}
Первое задание
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
const int N = 3;
const int M = 4;
int A[N][M];
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
cout << "Element [" << i << "][" << j << "] = "; cin >> A[i][j];
}
}
cout << "Output mas" << endl;
for(int i = 0; i < N; i++){
for(int j = 0 ; j < M; j++){
cout << A[i][j] << " ";
}
cout << endl;
}
system("pause");
return 0;
}
Второе задание
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
const int N = 50;
int temp;
int A[N];
for(int i = 0; i < N; i++){
temp = rand()%100;
while(temp % 2 != 1){
temp = rand()%100;
}
A[i] = temp;
}
for(int i = 0; i < N; i++){
cout << A[i] << endl;
}
system("pause");
return 0;
}