Velofel philippines price, pills, weight loss, side effects, results, ingredients, reviews, offer, where to buy i had a easy enjoy with this complement. this formula is a mix of compelling and standard factors upload to improve my sexual execution. it reestablishes my sexual strength and offers brilliant stamina in bed. it makes use of such fluid of the frame that nature uses to go together with a time of sizeable improvement in a given character. velofel philippines price, pills, weight loss, side effects, results, ingredients, reviews, offer, where to buy this severe substance improves the farthest point of blood spilling inside the penile chamber and manufactures the diploma of the penis. hence, i got the outcomes i changed into looking for. i actually admire the performance of this supplement and honestly would love to advise it. to get more info visit here:
1. Формула пути S=V*t,V=S/t;
Значит программа имеет вид
var s, v, t:integer;
begin
writeln('Введите путь и время');
readln(s, t);
v:=s/t
writeln('ответ: V=', v);
end.
Все остальное по анологии
Во 2 и 3 y:=/формула в условии/ и выводишь у
В 4, воспользуйся формулой площади S=a*b (a и b - ширина с длинной)
В 5 a=P-2*b (а основание, b бок сторона)
В 7 o=(a+b+c)/3 (о - ср., а, b, c - число в классах)
8.
var a, b:integer;
begin
writeln('Введите числа');
readln(a, b);
writeln('Сумма=', a+b);
writeln('Разность=', a-b);
end.
В 9 как 8, только вместо + и - надо * И /
Даны числа а1, а2, … аn. Сформировать квадратную матрицу порядка n по заданному образцу:введите сюда описание изображения
Вот примерный код, что дальше делать не знаю.int main() {
setlocale(LC_ALL, "Russian");
int n;
cout << "Введите порядок квадратной матрицы: ";
cin >> n;
int** arr = new int* [n];
for (int i = 0; i < n; i++)
arr[i] = new int[n];
cout << "Введите а1, а2, ... , a" << n << " : ";
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cin >> arr[i][j];
}
}
cout << "Введенный массив: " << endl;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cout << setw(4) << arr[i][j];
}
cout << endl;
}
system("pause");
return 0;