laba5/лаб12/Project8/8.cpp
2024-11-12 21:42:30 +04:00

19 lines
493 B
C++
Raw 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 <windows.h>
void main()
{
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
float c, z, p, i;
printf("Количество произведенных ноутбуков:");
scanf_s("%f", &c);
printf("Затраты за одну единицу продукции:");
scanf_s("%f", &z);
printf("Цена за одну единицу продукции:");
scanf_s("%f", &p);
i = (p - z) * c;
printf("Если фирма произведет %f ноутбуков с затратами %f и ценой %f за одну единицу продукции, то чистая прибыль составит: %f рублей ", c, z, p, i);
}