Mapping Numbers to Weekdays
Q.Write a C++ program to accept a number and display the corresponding number of week day
#include <iostream>
using namespace std;
int main() {
int day;
cout << "Enter a number (1-7) to display the corresponding weekday: ";
cin >> day...
shahalpp.hashnode.dev2 min read