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

📄 main.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Exercise 19.1 Using the Time class with an overloaded insertion operator.

#include "Time.h"
#include <iostream>
using std::cout;
using std::endl;

int main() {
  Time period1(10,30,25);
  Time period2(1, 70,90);
  cout << "\nPeriod 1 is " << period1
       << "\nPeriod 2 is " << period2
       << endl;
  return 0;
}

⌨️ 快捷键说明

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