// C++
#include <iostream>
int main()
{
int input;
std::cin >> input;
std::cout << "sum = " << input % 10 + input % 100 / 10;
if(input % 10 > input % 100 / 10)
{
cout << input % 10 << " > " << input % 100 / 10;
}else if(input % 10 < input % 100 / 10)
{
cout << input % 10 << " < " << input % 100 / 10;
}else
{
cout << input % 10 << " = " << input % 100 / 10;
}
return 0;
}
Умножь 7 на 33(Столько букв в русском языке) = 231
Ответ:
2) и 4)
Объяснение:
1) x+3y/5xy
2) x+3*y/5*xy
3) (x+3y)/5xy
4) (x+3*y)/(5*x*y)
Если переменные имеют имена х и у, то ни одна из записей не верна.
НО...
1) и 3) имен 3у, 5ху и 5ху4 не бывает, они не могут начинаться с цифры, поэтому запись неверна в любом случае.
2) если имена переменных х, у, и ху, то выражение корректно.
4) выражение корректно
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
struct StudentData
{
std::string name;
std::string surname;
int math;
int phys;
int comp_science;
};
bool
comp(const StudentData &a, const StudentData &b)
{
int tmp1 = a.math + a.phys + a.comp_science;
int tmp2 = b.math + b.phys + b.comp_science;
return tmp1 > tmp2 ? true : false;
}
int
main(void)
{
int n;
std::cin >> n;
std::vector< StudentData > data(n);
for (int i = 0; i < n; i++) {
std::cin >> data[i].name >> data[i].surname;
std::cin >> data[i].math >> data[i].phys >> data[i].comp_science;
}
std::sort(data.begin(), data.end(), comp);
for (int i = 0; i < n; i++) {
std::cout << data[i].name << " " << data[i].surname << std::endl;
}
return 0;
}
Заходишь в Word => Вставка=>Формула. И из конструктора делаешь нужную тебе формулу.