создать блок схему в скретч онлайн вот ссылка https://scratch.mit.edu/projects/editor/?tutorial=getStarted напишите последовательность блоков в ответах
Если дальше завершить программу, то получим это: program HelloWorld; function ez(a: longint): boolean; var c: integer; begin ez := a >= 2; for c := 2 to trunc(sqrt(a)) do if a mod c = 0 then ez := false end; var i, k: integer; num: array [1 .. 100] of integer; begin for i := 0 to 99 do num[i+1] := i + 1; k := 0; i := 1; while k < 7 do begin if ez(num[i]) = true then k := k + 1; i := i + 2; end; write(num[i-2]); end. ответ 19
int main() { int n=10, i, s=0; int a[n]; srand(time(NULL)); cout<<"array:"<<endl; for (i=0; i<n; i++) { a[i]=rand() % 50; cout<<a[i]<<" "; } cout<<endl; i = 1; do { a[i] = a[i]*a[i]; s += a[i]; i += 2; } while (i<=n);
for (i=0; i<n; i++) cout<<a[i]<<" "; cout<<endl; cout << "s = " << s << endl; return(0); }
program HelloWorld;
function ez(a: longint): boolean; var c: integer; begin ez := a >= 2; for c := 2 to trunc(sqrt(a)) do if a mod c = 0 then ez := false end; var i, k: integer; num: array [1 .. 100] of integer;
begin for i := 0 to 99 do num[i+1] := i + 1; k := 0; i := 1; while k < 7 do begin if ez(num[i]) = true then k := k + 1; i := i + 2; end; write(num[i-2]); end.
ответ 19
#include <ctime>
#include <iostream>
using namespace std;
int main() {
int n=10, i, s=0;
int a[n];
srand(time(NULL));
cout<<"array:"<<endl;
for (i=0; i<n; i++)
{
a[i]=rand() % 50;
cout<<a[i]<<" ";
}
cout<<endl;
i = 1;
do {
a[i] = a[i]*a[i];
s += a[i];
i += 2;
} while (i<=n);
for (i=0; i<n; i++) cout<<a[i]<<" ";
cout<<endl;
cout << "s = " << s << endl;
return(0);
}
Пример:
array:
39 10 25 35 9 14 29 34 24 41
39 100 25 1225 9 196 29 1156 24 1681
s = 4358