Advertisement
ItzEdInYourBed

Untitled

May 16th, 2020
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.  
  5.   int day = 6;
  6.  
  7.   // Write the code below:
  8.   if (day == 6 || day == 7){
  9.     std::cout << "Weekend";
  10.   }  
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement