4Сенбі мен жексенбідегі 20% женілдікті есепке алып, телефон сейлесулерінін багасын есептеу



Дата11.10.2023
өлшемі115.84 Kb.
#480333
3 тапсырма


4Сенбі мен жексенбідегі 20% женілдікті есепке алып, телефон сейлесулерінін багасын есептеу;
сейлесу уакыты мен кунді
пайдаланушы енгізеді

#include
#include

int main() {
double callRate = 0.1; // Standard call rate per minute
double discount = 0.2; // 20% discount on Saturday and Sunday
double totalCost = 0.0;
std::string dayOfWeek;
int callDuration;

// Input the day of the week and call duration
std::cout << "Enter the day of the week (e.g., Monday, Tuesday, etc.): ";
std::cin >> dayOfWeek;
std::cout << "Enter the call duration in minutes: ";
std::cin >> callDuration;

// Convert the input day to lowercase for case-insensitive comparison
for (char &c : dayOfWeek) {
c = tolower(c);
}

// Check if it's Saturday or Sunday for the discount
if (dayOfWeek == "saturday" || dayOfWeek == "sunday") {
totalCost = callRate * callDuration * (1 - discount);
} else {
totalCost = callRate * callDuration;
}

// Display the total cost
std::cout << "Total cost of the call: $" << totalCost << std::endl;

return 0;
}





Достарыңызбен бөлісу:




©dereksiz.org 2024
әкімшілігінің қараңыз

    Басты бет