ПАЙТОН. Здравствуйте с заданием. 2 фото это образец выполнения. Программа уже начала, но дальше не совсем понимаю
x = float(input("Введите значение переменной х")) print("Выберите функцию t для вычисления") print("1:t=2x" , "2: t=x**2", "3: t=5x//3", sep="\n") n= int(input("Введите номер функции")) if x < 1: z = z**2 ys = "x < 1" else: z = x+1 ys = "x =<3 " if n == 1: f = a * math.log(1+x**(1/5))+math.cos**(2)*(f(x)+1) t =
#include <iostream>
#include <fstream>
#include <cmath>
using namespace std;
int main()
{
ifstream ifs ("input.txt");
int n;
ifs >> n;
ifs.close();
ofstream ofs ("output.txt");
cout<<n;
int a = abs(n);
switch (a) {
case 1:
ofs << "Monday";
break;
case 2:
ofs << "Tuesday";
break;
case 3:
ofs << "Wednesday";
break;
case 4:
ofs << "Thursday";
break;
case 5:
ofs << "Friday";
break;
case 6:
ofs << "Saturday";
break;
case 7:
ofs << "Sunday";
break;
default:
ofs << "error";
break;
}
ofs.close();
return 0;
}
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int number; //Вводимое число
int difference_first, difference_second; //переменные проверки арифм. прогр.
cout << "Enter three digit number: "; cin >> number; //ввод трехзначного числа
while(number < 100 or number >= 1000){
//проверка числа на трехзначность
cout << "Error!\nEnter three digit number: "; cin >> number;
}
difference_first = number % 10 - (number / 10 % 10); //разница между третьей цифрой и второй
difference_second = (number / 10 % 10) - (number / 100 % 10); // разница между второй цифрой и первой
if(difference_first == difference_second){ // если эти разницы равны, значит
cout << "YES!" << endl; // вывод, ДА
}else cout << "NO!" << endl; // иначе, НЕТ
system("pause");
return 0;
}