Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include<ctime>
- #include<stdlib.h>
- using namespace std;
- int main()
- {
- string zile[] = {"Luni","Marti","Miercuri","Joi","Vineri","Sambata","Duminica"} ;
- srand(time(NULL));
- cout <<"Ziua ta norocoasa este "<<zile[rand()%7];
- }
Advertisement
Add Comment
Please, Sign In to add comment