Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
035e8393fd | ||
|
d45fb9bf0e |
@ -1,6 +1,103 @@
|
||||
#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);
|
||||
@ -27,16 +124,24 @@ void name1() {
|
||||
printf("Дмитриев\n");
|
||||
}
|
||||
|
||||
void pic() {
|
||||
printf(" ___ \n");
|
||||
printf(" /> >\n");
|
||||
printf(" | _ _ |\n");
|
||||
printf(" /` x /\n");
|
||||
printf(" / |\n");
|
||||
printf(" / |\n");
|
||||
printf(" __ | | | |\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() {
|
||||
|
Loading…
Reference in New Issue
Block a user