C/C++
saltGS4172
Let there be light
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
centos配置g++
安装g++ yum install -y gcc-c++ 使用cpp后缀名 使用g++编译 g++ helloworld.cpp cat helloworld.cpp # include <iostream> int main(){ using namespace std; cout <<"Hello world\n"; return 0; } g+...原创 2018-09-01 15:42:44 · 532 阅读 · 0 评论 -
c++程序设计练习2.1
输入两个整型数,输出这两个整型数相除后的商和余数 #include <iostream> int main() { using namespace std; int a,b; cout << "Enter one integer number: "; cin >> a; cout << "Enter one ...原创 2018-09-01 16:03:13 · 548 阅读 · 0 评论
分享