
项目
codertcm
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c++实现用户密码输入界面
#include <stdio.h> #include <windows.h> #include <conio.h> #include <bits/stdc++.h> using namespace std; void gotoxy(int x,int y) { COORD c; c.X=x-1; c.Y=y-1; S...原创 2019-06-03 20:29:52 · 7897 阅读 · 4 评论 -
c++引用对比
#include <iostream> using namespace std; int main(){ int a = 1; double &b = a; cout << "a : " << a << " " << "b : "<< b << endl; } #include ...原创 2019-06-22 20:07:16 · 326 阅读 · 0 评论