Предмет: Английский язык, автор: Alexendra242006

Помогите перевести пожалуйста
Peter Parker is a quiet
teenager. He lives in a small house in New
York City with his Aunt Mary. Peter hasn`t got many
friends. His best friend, Mary Jane, lives next door. One day, a spider bites
Peter in a science lab. Now he`s got special powers! He is strong and fast and
he can climb walls, just like a spider! People love him, but his enemy, the
evil Green Goblin, is after him. Can Spider-Man stop him? Watch this brilliant
film to find out!

Ответы

Автор ответа: Deemoql
1
Питер Паркер - тихий подросток. Он живет в маленькой квартире в Нью Йорке с его тетей Мэри. У Питера мало друзей. Его лучшая подруга, Мэри Джей, живет в следующей по коридору двери.
Однажды в научной лаборатории Питера укусил паук. После этого Питер получил супер-силы! Он стал быстрым, сильным и научился лазать по стенам как настоящий паук! Люди любят его, но его враг - Зеленый Гоблин противодействует ему. Сможет ли Человек Паук остановить его?
Интересные вопросы
Предмет: Информатика, автор: kumiho9fox
С++
Доброго времени суток суток! Нужна помощь с перегрузкой операторов в классе дробь. Я сделала перегрузку всех функций кроме функции сокращения (sokr fraction) и функции перевода обычной дроби в десятичную (convertingTOdecimel). Ещё нужна помощь, не знаю как прописывать main во время перегрузки операторов.
Вот моя программа(по перегрузки) :
#include <iostream>
class fraction
{
public:
int num;
int denum;
bool vec;
void print()
{
std::cout« this-> num « "/" « this-> denum « std::endl;
}
void swap (int *a, int *b)
{
int f;
f= *a;
*a = *b;
*b = f;
}
int NOD(int a, int b)
{
int div;
if (a<0)
a=-a;
if (b<0)
b=-b;
while (a != b)
{
if (a < b)
swap(&a,&b);
a = a - b;
}
div = a;
return div;
}
fraction mul (fraction arg)
{
fraction temp;
temp.num = this->num * arg.num;
temp.denum = this->denum * arg.denum;
return temp;
}
fraction mul_number(int arg)
{
fraction temp;
temp.num = num * arg;
temp.denum = denum;
int common = NOD(temp.num, temp.denum);
temp.num /=common;
temp.denum/=common;
return temp;
}
fraction del(fraction arg)
{
fraction temp;
temp.num = this-> num * arg.denum;
temp.denum = this->denum * arg.num;
return temp;
}
fraction del_number(int arg)
{
fraction temp;
temp.num = num;
temp.denum = denum * arg;
return temp;
}
fraction del_number_two(int arg)
{
fraction temp;
temp.num = denum * arg;
temp.denum = num;
return temp;
}
fraction add(fraction arg)
{
fraction temp;
temp.num = (this ->num *arg.denum) + (arg.num*denum);
temp.denum = this -> denum * arg.denum;
return temp;
}
fraction add_number(int arg)
{
fraction temp;
temp.num = arg * this->denum + this-> num;
temp.denum = this->denum;
return temp;
}
fraction sub(fraction arg)
{
fraction temp;
temp.num = (this->num *arg.denum) - (arg.num*denum);
temp.denum = this ->denum * arg.denum;
return temp;
}
fraction sub_number(int arg) //вычитание целого числа из дроби
{
fraction temp;
temp.num -= arg * this-> denum - this-> num ;
temp.denum = this->denum;
return temp;
}
fraction sub_number2(int arg) // вычитание дроби из целого числа
{
fraction temp;
temp.num = arg * this->denum - this-> num;
temp.denum = this->denum;
return temp;
}
fraction step(fraction arg)
{
fraction temp;
temp.num = (num *num);
temp.denum = (denum*denum);
return temp;
}
fraction sokr(fraction arg)
{
fraction temp;
int div;
div = NOD(num,denum);
temp.num = (this -> num / div);
temp.denum = (this-> denum / div);
return temp;
}
double convertingTOdecimal(fraction arg)
{
return (double)num/denum;
}
};

int main()
{
fraction fr1;
fr1.num;
fr1.denum;
std::cout«"Enter the first fraction: ";std::cin»fr1.num »fr1.denum;
fraction fr2;
fr2.num;
fr2.denum;
std::cout«"Enter the second fraction: ";std::cin»fr2.num »fr2.denum;
int arg;
std::cout«"Enter a number for operations with fractions: ";std::cin»arg;
fr1.print();
fr2.print();
fr1.mul(fr1).print();
fr1.mul_number(arg).print();
fr1.del(fr2).print();
fr1.del_number(arg).print();
fr1.del_number_two(arg).print();
fr1.add(fr2).print();
fr1.add_number(arg).print();
fr1.sub(fr2).print();
fr1.sub_number(arg).print();
fr1.sub_number2(arg).print();
fr1.step(fr1).print();
fr1.sokr(fr1).print();
double decimal = fr1.convertingTOdecimal(fr1);
std::cout«decimal«std::endl;
}
Умоляю, помогите, даю последние баллы ​
Предмет: Английский язык, автор: sofiakovtunn
Предмет: Математика, автор: loxloxloxllooxxxxx