摘要: 1.函数重载区分const 和非const 参数 void drivel(const char *bites);//1 void dribble(char *bits);//2 void dribble(const char * cbits);//3 const char p1[20]="hello 阅读全文
posted @ 2024-07-23 15:03 zhongta 阅读(8) 评论(0) 推荐(0)
摘要: // CPPTest.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 // #include<fstream> #include <iostream> #include<string> #include<cmath> using namespace std; double 阅读全文
posted @ 2024-07-23 14:43 zhongta 阅读(17) 评论(0) 推荐(0)