Для паскаля:
uses CRT;
var a, b: integer;
begin
write (' Введите длину первого катета ');
read (a);
write (' Введите длину второго катета ');
read (b);
write (' Гипотенуза =');
write (sqr(a)+sqr(b));
end.
<span>128*256*2=65536 бит =8192 байта </span>
#1:
#include <iostream>
#include <ctime>
int main()
{
srand(time(NULL));
const int arraySize = 10;
int mainArray[arraySize];
for (int i = 0; i < arraySize; i++)
mainArray[i] = rand() % 1000;
int maxNum = mainArray[0];
for (int i = 0; i < arraySize; i++)
if (mainArray[i] > maxNum)
maxNum = array[i];
std::cout << maxNum << std::endl;
system("pause");
return 0;
}
-------------------
#2:
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
float
a_coef,
b_coef,
c_coef;
cout << "Input the coefficients (a * x^2 + b * x + c): ";
cin >> a_coef >> b_coef >> c_coef;
float res1, res2;
res1 = (-b_coef + sqrt(b_coef * b_coef - 4 * a_coef * c_coef)) / (2 * a_coef);
res2 = (-b_coef - sqrt(b_coef * b_coef - 4 * a_coef * c_coef)) / (2 * a_coef);
cout << res1 << "; " << res2 << endl;
system("pause");
return 0;
}
-------------------
#3:
#include <iostream>
#include <ctime>
int main()
{
srand(time(NULL));
int
unknownNumber = rand() % 100 - 50,
attempts = 0,
inputtedNumber;
while (true)
{
attempts++;
cout << "Input the number: ";
cin >> inputtedNumber;
if (inputtedNumber != unknownNumber)
cout << "Incorrect answer! Try again!" << endl;
else
break;
}
cout << "Attempts: " << attempts;
system("pause");
return 0;
}
//Дам блок-схему и код на Паскале
//Pascal ABC.NET v3.0 сборка 1111
var
r,v,s:real;
begin
readln(r);
v:=4/3*pi*power(r,3);
s:=3/4*pi*sqr(r);
writeln('V=',v,' S=',s);
end.
Если использовать стандартную кодировку символов 1 байт = 1 символ,то
1)u = 1200 бит/сек = 150 байт/сек
V = u*t
t = 5 сек
V = 150 * 5 = 750 символов
2) Тоже самое
u = 14400 бит/сек = 1800 байт/сек
V = 1800 * 5 = 9000 символов