2024-11-01 16:22:17 +04:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <math.h>
|
|
|
|
|
#include <windows.h>
|
2024-11-01 16:20:35 +04:00
|
|
|
|
|
2024-11-01 16:22:17 +04:00
|
|
|
|
void h() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
2024-11-01 16:20:35 +04:00
|
|
|
|
|
2024-11-01 16:22:17 +04:00
|
|
|
|
float h = 12.0;
|
|
|
|
|
float g = 9.8;
|
|
|
|
|
float t = sqrt(2 * h / g);
|
|
|
|
|
|
|
|
|
|
printf("Предмет падает с высоты %f метров", h);
|
|
|
|
|
printf("\nОн коснётся земли через %f секунд\n", t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void hn() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
|
|
|
|
|
float h;
|
|
|
|
|
printf("\nВведите высоту в метрах:");
|
|
|
|
|
scanf_s("%f", &h);
|
|
|
|
|
float g = 9.8;
|
|
|
|
|
float t = sqrt(2 * h / g);
|
|
|
|
|
|
|
|
|
|
printf("Предмет падает с высоты %f метров", h);
|
|
|
|
|
printf("\nОн коснётся земли через %f секунд", t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void apart() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
|
|
|
|
|
float m;
|
|
|
|
|
int rub_m;
|
|
|
|
|
|
|
|
|
|
printf("\nВведите площадь квартиры m*m:");
|
|
|
|
|
scanf_s("%f", &m);
|
|
|
|
|
|
|
|
|
|
printf("\nВведите стоимость 1 кв. м RUB:");
|
|
|
|
|
scanf_s("%d", &rub_m);
|
|
|
|
|
|
|
|
|
|
float price = m * rub_m;
|
|
|
|
|
|
|
|
|
|
printf("Квартира площадью %f m*m по цене %d RUB/(m*m) стоит <%10.1f> RUB\n", m, rub_m, price);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void apart_time() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
|
|
|
|
|
float m;
|
|
|
|
|
int rub_m;
|
|
|
|
|
int sal;
|
|
|
|
|
|
|
|
|
|
printf("\nВведите площадь квартиры m*m:");
|
|
|
|
|
scanf_s("%f", &m);
|
|
|
|
|
|
|
|
|
|
printf("\nВведите стоимость 1 кв. м RUB:");
|
|
|
|
|
scanf_s("%d", &rub_m);
|
|
|
|
|
|
|
|
|
|
printf("\nВведите размер зарплаты RUB:");
|
|
|
|
|
scanf_s("%d", &sal);
|
|
|
|
|
|
|
|
|
|
float price = m * rub_m;
|
|
|
|
|
int months = (price / (sal*0.5));
|
|
|
|
|
|
|
|
|
|
printf("Квартира площадью %f m*m по цене %d RUB/(m*m) стоит <%10.1f> RUB\n", m, rub_m, price);
|
|
|
|
|
printf("При зарплате %d RUB на эту квартиру нужно копить %d месяцев", sal, months);
|
2024-11-01 16:20:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-01 16:22:17 +04:00
|
|
|
|
void math() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
|
|
|
|
|
int kol;
|
|
|
|
|
int perc;
|
|
|
|
|
|
|
|
|
|
printf("\nВведите кол-во учеников:");
|
|
|
|
|
scanf_s("%d", &kol);
|
|
|
|
|
|
|
|
|
|
printf("\nВведите процент девочек в классе:");
|
|
|
|
|
scanf_s("%d", &perc);
|
|
|
|
|
|
|
|
|
|
int boys = (kol*(100-perc))/100;
|
|
|
|
|
|
|
|
|
|
printf("В классе %d мальчиков", boys);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void phys() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
|
|
|
|
|
int s;
|
|
|
|
|
int pres;
|
|
|
|
|
|
|
|
|
|
printf("\nВведите давление(Па):");
|
|
|
|
|
scanf_s("%d", &pres);
|
|
|
|
|
|
2024-11-01 16:21:33 +04:00
|
|
|
|
void aboutme() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
2024-11-01 16:20:35 +04:00
|
|
|
|
|
2024-11-01 16:21:33 +04:00
|
|
|
|
printf("Дмитриев\n");
|
|
|
|
|
printf("Максим \n");
|
|
|
|
|
printf("Александрович\n");
|
|
|
|
|
printf("\nГруппа: пибд-14");
|
|
|
|
|
printf("\nДата: 04.09.2024");
|
|
|
|
|
printf("\nПредмет: основы программирования");
|
|
|
|
|
printf("\nЛабораторная работа №1\n");
|
2024-11-01 16:20:35 +04:00
|
|
|
|
}
|
2024-11-01 16:22:17 +04:00
|
|
|
|
|
2024-11-01 16:21:33 +04:00
|
|
|
|
void name1() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
|
|
|
|
|
printf("\nЛабораторная работа №1");
|
|
|
|
|
printf("\nПредмет: основы программирования");
|
|
|
|
|
printf("\nДата: 04.09.2024");
|
|
|
|
|
printf("\nГруппа: пибд-14\n");
|
|
|
|
|
printf("\nАлександрович\n");
|
|
|
|
|
printf("Максим\n");
|
|
|
|
|
printf("Дмитриев\n");
|
2024-11-01 16:22:17 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void economy() {
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
|
|
|
|
|
int credit;
|
|
|
|
|
float perc;
|
|
|
|
|
|
|
|
|
|
printf("\nВведите кредит RUB:");
|
|
|
|
|
scanf_s("%d", &credit);
|
|
|
|
|
|
|
|
|
|
printf("Введите процент кредита за год(дробью):");
|
|
|
|
|
scanf_s("%f", &perc);
|
|
|
|
|
|
|
|
|
|
int creditpay = credit * (1 + perc);
|
|
|
|
|
int overpay = creditpay - credit;
|
|
|
|
|
|
|
|
|
|
printf("Плата за кредит за год составляет %d", creditpay);
|
|
|
|
|
printf("\nПереплата кредита за год составляет %d", overpay);
|
|
|
|
|
}
|
2024-11-01 16:20:35 +04:00
|
|
|
|
|
2024-11-01 16:22:17 +04:00
|
|
|
|
void main() {
|
2024-11-01 16:21:33 +04:00
|
|
|
|
//printf("Hello world!");
|
|
|
|
|
aboutme();
|
|
|
|
|
//name1();
|
|
|
|
|
//pic();
|
2024-11-01 16:22:17 +04:00
|
|
|
|
}
|