Advertisement
avr39ripe

BV012daysInYearTask

Feb 10th, 2021
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5.     int year{2021};
  6.  
  7.  
  8.     //std::cout << "Enter year number\n";
  9.     //std::cin >> year;
  10.  
  11.    
  12.  
  13.     std::cout << "Year is " << year << '\n';
  14.     std::cout << " There are " << days << " in " << year << " year\n";
  15. }
  16.  
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement