⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Exercise 19.2 Using the Time class with an overloaded extraction operator.
// The extraction operator is implemented as a friend of the Time class
#include "Time.h"
#include <iostream>
using std::cout;
using std::cin;
using std::endl;

int main() {
  Time period1;
  Time period2;
  cout << "\nEnter a time as hours:minutes:seconds, and press Enter: ";
    cin >> period1;
  cout << "\nEnter another time as hours:minutes:seconds, and press Enter: ";
    cin >> period2;
  cout << "\nPeriod 1 is " << period1
       << "\nPeriod 2 is " << period2
       << endl;
  return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -