program TabulW;
var
a, b, c, x, dx, w: real;
begin
a := 2.8;
b := -0.3;
c := 4.0;
x := 1.0;
dx := 0.05;
Writeln(' a b c x w');
while x - 2 < 0.0001 do
begin
if x < 1.2 then
w := a * x * x + b * x + c
else if x > 1.2 then
w := (a + b * x) / sqrt(x * x + 1)
else
w := a / x + sqrt(x * x + 1);
Writeln(a:6:3, b:8:3, c:8:3, x:8:3, w:8:3);
x += dx
end;
Readln;
end.
Первое задание
#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;
}
Ответ: 6
Объяснение: мы должны смотреть из скольки точек мы можем попасть в К: это Д, В, Е. Теперь мы должны узнать сколько точек ведут в эти дороги. В точку Д одна дорога(АБД). В точку В две дороги(АВ и АБВ). В точку Е три дороги(АГЕ, АВЕ, АБВЕ). Сложим это количество: 1 + 2 + 3 = 6.