C++:
#include < iostream >
using namespace std;
int a[10];
int main() {
for(int i = 0; i < 10; ++i){
cin >> a[i];
}
for(int i = 0; i < 10; ++i){
if(!(a[i]%2)) a[i] *= 2;
if((i+1)%2) a[i] /= a[0];
}
for(int i = 0; i < 10; ++i){
cout << a[i];
}
return 0;
}
(уберите пробелы до и после iostream)
Ответ:
for i in range(100, 1001):
if i % 3 == 0:
print(i)
Объяснение:
Либо в списке:
numbers = []
for i in range(100, 1001):
if i % 3 == 0:
numbers.append(i)
print(numbers)
Var
m, n, p: integer;
begin
Write('Введите свой номер в группе: ');
Readln(n);
n := n * 12;
p := 1;
repeat
m := n mod 10;
p := p * m;
n := n div 10
until n = 0;
Writeln('Результат ', p)
end.
Тестовое решение:
Введите свой номер в группе: 13
Результат 30
38400 байт / 1024 = 37,5 Кб
1 Гб = 1024 Мб
1457664 байт / 1024 = 1423,5 Кб
Ответ:
using System;
namespace Easy
{
class Program
{
static void Main()
{
float c = -30;
while(c == -30) // по ОДЗ
{
Console.WriteLine("Введите число: ");
c = Convert.ToSingle(Console.ReadLine());
}
float x;
x = (300 * (30 + c) - 200) / (12 + 25);
Console.WriteLine("x = " + x);
}
}
}