Программа на паскале для решения задачи - в прилагаемом файле
Program zadanie1 (input, output);
var a, b:integer;
s:real;
begin
a:=1;
s:=0;
b:=0;
while a <> 0 do
begin
read (a);
s:=s+a;
b:=b+1;
end;
s:=s/(b-1);
writeln (s);
end.
-------------------------------------------------------------
program zadanie2 (input, output);
var a, p, b, c, n, s:integer;
begin
a:=1;
b:=0;
c:=0;
s:=0;
read (n);
repeat
c:=a+b;
b:=a;
a:=c;
s:=s+c;
if s < n then
p:=s;
until s > n;
writeln (p);
end.
--------------------------------------------------
program zadanie3 (input, output);
var n, I:integer;
a, b:real;
begin
read (n);
a:=0;
for I:=0 to n do
begin
a:=exp(I*ln(2));
if a < n then
b:=a;
end;
writeln (b);
end.
Все зависит от версии языка Паскаль (см. вложения).
StrToInt определено только в PascalABC.NET, его предшественнике, "умершем" 10 лет назад - Pascal ABC и в Borland Delphi - также давно (с 2008 года) закрытом проекте корпорации Borland Inc.
Вы не указали язык программирования, поэтому ответ выбирайте по вложениям.
Первое задание
#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;
}