UlSTU_Labs/UlSTU_Console/UlSTU_Console.cpp
Максим Дмитриев 035e8393fd Изменили
2024-11-01 16:30:42 +04:00

152 lines
3.6 KiB
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
#include <math.h>
#include <windows.h>
void h() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
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);
}
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);
void aboutme() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
printf("Дмитриев\n");
printf("Максим \n");
printf("Александрович\n");
printf("\nГруппа: пибд-14");
printf("\nДата: 04.09.2024");
printf("\nПредмет: основы программирования");
printf("\nЛабораторная работа №1\n");
}
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");
}
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);
}
void main() {
//printf("Hello world!");
aboutme();
//name1();
//pic();
}