Temat:
InformatykaAutor:
crystal4Utworzono:
1 rok temu#include <iostream>
using namespace std;
string dzien_tygodnia (int x)
{
string w;
if (x==1) w="poniedzialek";
else if (x==2) w="wtorek";
else if (x==3) w="sroda";
else if (x==4) w="czwartek";
else if (x==5) w="piatek";
else if (x==6) w="sobota";
else if (x==7) w="niedziela";
else w="blad";
return w;
}
int main ()
{
int d;
cout << "Podaj dzien tygodnia: ";
cin >> d;
cout << dzien_tygodnia(d);
}
Autor:
cheerioqrzm
Oceń odpowiedź:
6