io.cpp.svn-base

来自「QT方面的开发」· SVN-BASE 代码 · 共 23 行

SVN-BASE
23
字号
#include <string>#include <iostream>int main() {    using namespace std;    const int THISYEAR = 2006;    string yourName;    int birthYear;    cout << " What is your name? "  << flush;    cin >> yourName;    cout << "What year were you born? " ;    cin >> birthYear;    cout << "Your name is " << yourName            << " and you are approximately "             << (THISYEAR - birthYear)            << " years old. " << endl;}

⌨️ 快捷键说明

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