C++
a149979032
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
游戏设计里的砍血程序C++意淫版
#include<iostream> #include<cstring> using namespace std; char *getname(void) { char temp[80]; cout << "Enter the name: "; cin >> temp; char *pn = new char[strlen(temp) + 1]; strcpy(pn,temp); return pn; } .原创 2020-06-03 08:56:26 · 271 阅读 · 0 评论 -
用两个函数使用new和delete
#include<iostream> #include<cstring> using namespace std; char *getname(void) { char temp[80]; cout << "Enter the name: "; cin >> temp; char *pn = new char[strlen(temp) + 1]; strcpy(pn,temp); return pn; } .原创 2020-06-03 08:05:31 · 300 阅读 · 0 评论 -
mpg换算工具
#include<iostream> int main() { using namespace std; double num; const double KM = 100,MI = 62.14,GAL = 3.875; double mi_per_km,mi_per_gal,in,result; cout << "Enter ...原创 2019-12-15 08:15:56 · 1363 阅读 · 0 评论 -
第一个C++语言,用的VS2019,感觉不错
#include<iostream> int main() { using namespace std; cout << "Hello world!\n"; return 0; }原创 2019-06-24 13:28:02 · 4850 阅读 · 0 评论
分享