Công thức tính lợi nhuận như sau nếu giá bán lớn hơn giá vốn -
profit=sellingPrice-CosePrice;
Công thức tính lỗ như sau nếu giá vốn lớn hơn giá bán -
loss=CostPrice-SellingPrice
Bây giờ, hãy áp dụng logic này trong chương trình và cố gắng tìm xem liệu người đó có lãi hay lỗ sau khi mua bất kỳ bài báo nào -
Ví dụ
Sau đây là chương trình C để tìm lãi hoặc lỗ -
#include<stdio.h> int main(){ float CostPrice, SellingPrice, Amount; printf("\n Enter the product Cost : "); scanf("%f", &CostPrice); printf("\n Enter the Selling Price) : "); scanf("%f", &SellingPrice); if (SellingPrice > CostPrice){ Amount = SellingPrice - CostPrice; printf("\n Profit Amount = %.4f", Amount); } else if(CostPrice> SellingPrice){ Amount = CostPrice - SellingPrice; printf("\n Loss Amount = %.4f", Amount); } else printf("\n No Profit No Loss!"); return 0; }
Đầu ra
Khi chương trình trên được thực thi, nó tạo ra kết quả sau -
Enter the Product Cost: 450 Enter the Selling Price): 475.8 Profit Amount = 25.8000