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

📄 l12201.cpp

📁 这是我自己写的并参考的一部分C++primer的程序
💻 CPP
字号:
#include <iostream.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{       int v1,v2;

  cout<<"Enter two numbers:"<<endl;

  cin>>v1>>v2;
  cout<<"the sum of"<<v1<<" and "<<v2
      <<" is "<<(v1+v2)<<endl;
  getchar();
 return 0;
}

⌨️ 快捷键说明

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