Alx09

Untitled

Apr 9th, 2019
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include<ctime>
  3. #include<stdlib.h>
  4. using namespace std;
  5.  
  6.  
  7. int main()
  8. {
  9. string zile[] = {"Luni","Marti","Miercuri","Joi","Vineri","Sambata","Duminica"} ;
  10. srand(time(NULL));
  11.  
  12.  
  13. cout <<"Ziua ta norocoasa este "<<zile[rand()%7];
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment