Compare commits
No commits in common. "Lab2" and "main" have entirely different histories.
@ -1,103 +1,6 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
|
||||||
#include <windows.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() {
|
void aboutme() {
|
||||||
SetConsoleCP(1251);
|
SetConsoleCP(1251);
|
||||||
SetConsoleOutputCP(1251);
|
SetConsoleOutputCP(1251);
|
||||||
@ -124,24 +27,16 @@ void name1() {
|
|||||||
printf("Дмитриев\n");
|
printf("Дмитриев\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void economy() {
|
void pic() {
|
||||||
SetConsoleCP(1251);
|
printf(" ___ \n");
|
||||||
SetConsoleOutputCP(1251);
|
printf(" /> >\n");
|
||||||
|
printf(" | _ _ |\n");
|
||||||
int credit;
|
printf(" /` x /\n");
|
||||||
float perc;
|
printf(" / |\n");
|
||||||
|
printf(" / |\n");
|
||||||
printf("\nВведите кредит RUB:");
|
printf(" __ | | | |\n");
|
||||||
scanf_s("%d", &credit);
|
printf("/ _| | | |\n");
|
||||||
|
printf("| ( \\__\\ _)__)\n");
|
||||||
printf("Введите процент кредита за год(дробью):");
|
|
||||||
scanf_s("%f", &perc);
|
|
||||||
|
|
||||||
int creditpay = credit * (1 + perc);
|
|
||||||
int overpay = creditpay - credit;
|
|
||||||
|
|
||||||
printf("Плата за кредит за год составляет %d", creditpay);
|
|
||||||
printf("\nПереплата кредита за год составляет %d", overpay);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
|
Loading…
Reference in New Issue
Block a user