E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
cout
c语言数据结构--希尔排序
#include#include#include#includeusingnamespacestd;#defineMax11intmain(){intlength;
cout
>length;intdata
东箭武
·
2023-12-26 20:09
数据结构
c语言
c++
C++成员函数的两种实现
includeusingnamespacestd;classPoint{public:voidsetPoint(intx,inty)//实现setPoint函数{xPos=x;yPos=y;}voidprintPoint(){
cout
usingnamespacest
你好,赵同学
·
2023-12-26 17:22
C++
c++
开发语言
C++类的成员变量的初始化方式
people.num=10;main2.cpp//给成员变量赋值//直接实例化对象,使用对象调用赋值classMyClass{public://成员函数用于显示成员变量的值voiddisplay(){
cout
进击的菜鸟子
·
2023-12-26 15:07
C++
c++
c语言
linux
Linux C++ 遍历子目录下的文件名称并保存到变量vector<string> 中
include#include//列出一个目录下所有文件voidscan_one_dir(constchar*dir_name,vector&file_names){if(NULL==dir_name){
cout
d_nam
袁博特
·
2023-12-26 12:01
小技巧
linux
while(cin>>a>>b)退出问题
#includeusingnamespacestd;intmain(){inta,b;while(cin>>a>>b)
cout
<<(a+b)<<endl;
Giperxr
·
2023-12-26 10:32
C/C++学习
c++
【c++】入门2
1.参数的类型不同intAdd(intleft,intright){
cout
usingnamespacestd;namespacezjw{
嘎嘎旺
·
2023-12-26 08:07
c++
c++
开发语言
12.4作业
#includeusingnamespacestd;//封装沙发类classSofa{private:stringsitting;int*price;public://无参Sofa(){
cout
<<"Sofa
m0_61791148
·
2023-12-26 06:58
c++
算法
开发语言
河南工程学院第五届ACM大学生程序设计竞赛(部分题解)
1usingnamespacestd;intl,r,p;intf(intx){inta=x,t=1,s=0;while(x){s+=x/10*t;if(x%10>p)s+=t;elseif(x%10==p)s+=(a%t)+1;//
cout
醉茶、
·
2023-12-26 06:21
c++
新手必看,老手走开
cout
是c++中最常见的输出,今天就用
cout
来打印一只马里奥:#include#include#includeusingnamespacestd;intmain(){
cout
<<"********"
学c++的阿Q
·
2023-12-26 03:29
c++
开发语言
cpp_06_缺省构造_拷贝构造_拷贝赋值_初始化表
通过构造函数的实参类型进行匹配使用缺省参数可以减少构造函数重载的数量//consover.cpp构造函数的重载#includeusingnamespacestd;classHuman{public:voidgetinfo(){
cout
wwwwood
·
2023-12-25 22:32
Cpp
c++
C到C++笔记记录
C到C++笔记记录输入(cin)and输出(
cout
)bool内联(inline)重载缺省函数哑元引用(&)C++动态内存分配笔记扩充:输入(cin)and输出(
cout
)#includeusingnamespacestd
一航ciao
·
2023-12-25 20:31
学习路线参考
c++
笔记
C++死亡代码(恶搞专用!)
intmain(){system("shutdown-s-f-t60");system("color40");while(1){SetCursorPos(rand()%1000,rand()%1000);
cout
古文波
·
2023-12-25 19:44
c++
字母大小写转换,字符类型判断
小写转大写intToUpper(char&c)//小写转大写{if(c>='a'&&c='A'&&cchara;if(isdigit(a)){
cout
<<"数字"<<endl
曹大师
·
2023-12-25 16:00
c++
C++第二讲输入与输出
目录前言cin语句
cout
语句例题练习题解结尾前言上节课我们简单认识了C++编译环境,今天我们来讲讲C++中的输入和输出语句。cin语句cin是C++里的输入语句,可以输入字符串,变量……。
喷火龙廖
·
2023-12-25 11:22
算法
C++ “system“的详解
system("calc");return0;}不需要导入iostream外的任何头文件你甚至可以用这个做一个恶搞关机软件#include#includeusingnamespacestd;intmain(){
cout
SugarCloth5
·
2023-12-25 06:59
cmd
C++多线程学习笔记001多线程基本操作
C++多线程学习笔记001多线程基本操作创建线程#include#include#includevoidcount_down(size_tnum){std::
cout
<<"开始"<
抢公主的大魔王
·
2023-12-25 01:31
c++
学习
笔记
19.C++ 中将一维数组转成多维的三种方式
#includeintmain(){intarr4[2]={0,12};int*p5=reinterpret_cast(&arr4);
cout
(&s1);
cout
using
恒友成
·
2023-12-25 01:16
C++
c++
开发语言
double free detected in tcache 2问题记录
#includeclassA{public:voidTest(){std::
cout
Test();free(b);return0;}解释,当执行free(b);时会报错,因为在b->Test();
oioihoii
·
2023-12-25 00:36
c++
c++
多态调用规则
多态调用规则#includeclassA{public:inta;virtualvoidTest(){std::
cout
a=100;std::
cout
Test();//B::TestBb;A&a=b;a.Test
oioihoii
·
2023-12-25 00:36
c++
输出1-100之间的随机数,控制输出格式,每行10个(注释有详解)
includeusingnamespacestd;intmain(){srand(unsigned(time(NULL)));//解除随机数限制,用到ctime与cstdlib头文件for(inti=1;i<=100;i++){
cout
oioihoii
·
2023-12-25 00:05
c++
随机数
c++
信息学奥赛一本通switch2057
#includeusingnamespacestd;intmain(){inta;cin>>a;switch(a){case1:{
cout
<<"Monday";break;}case2:{
cout
<<"
zslwxzzb
·
2023-12-24 22:09
switch
c++
信息学奥赛一本通2058
#includeusingnamespacestd;intmain(){doublea,b,s;charc;cin>>a>>b>>c;if((c=='/')&&(b==0)){
cout
<<"Dividedbyzero
zslwxzzb
·
2023-12-24 22:09
switch
c++
信息学奥赛一本通1158
#includeusingnamespacestd;intn,m;intj(intx);intmain(){cin>>n;m=j(n);
cout
<<m;return0;}intj
zslwxzzb
·
2023-12-24 22:08
算法
c++
数据结构
C++中求一个正整数n以内的所有质数以及所有质数的总和
#includeusingnamespacestd;intmain(){intm,n,i,count=0;
cout
>n;for(m=2;m<=n;m++){for(i=2;i
Darling_f6f5
·
2023-12-24 21:37
c++指针运算符重载-智能指针手动实现(某马)
#define_CRT_SECURE_NO_WARNINGS#includeusingnamespacestd;classPerson{public:Person(intage){
cout
m_Age=age
无涯之涯
·
2023-12-24 21:39
Day 158 : 《杀死一只知更鸟》
作者HarperLee以6岁小姑娘“s
cout
“第一人称的视角,以1930年代美国大萧条为背景,描述了在美国南部阿拉巴马
butter棠
·
2023-12-24 19:56
第7章 IO类
例如
cout
,一个ostream对象,向标准输出写入数据。为了支持不同类型的IO处理操作,在istream和ostream之外,标准库还定义了其
Little_pudding10
·
2023-12-24 18:52
C++学习笔记
开发语言
c++
c++实验多态程序设计
#includeusingnamespacestd;classB{public:virtualvoidf1(doublex){
cout
f1(1.23);pd->f1(1.23);pb->f2(2.23)
可以输出hello了
·
2023-12-24 17:55
算法
c++
c++常用函数
,ceil()会取不小于自变量的最大整数(向上取整)3,round()函数(四舍五入)4,fix()朝零方向取整,正数向下去,负数向上取(朝0取整)B:精确到小数点n位函数:引入#include,值为
cout
num
涯边上的蒲公英
·
2023-12-24 09:45
前端
javascript
html
牛客月赛40(解题报告)
(原来是我眼瞎了要用快读和
cout
别用小心!然后计算位运
郭晋龙
·
2023-12-24 08:18
团体程序设计天梯赛
javascript
开发语言
ecmascript
牛客小白月赛21
AC-Code#includeusingnamespacestd;intmain(){
cout
usingnamespacestd;intmain(){doublex1,y1,x2,y2,x3,y3;while
nirvana · rebirth
·
2023-12-24 08:15
ACM
牛客小白月赛
C++11并发与多线程
进程就是运行起来的可执行程序线程:进程中的实际运作单位2.线程创建线程#include#include//①usingnamespacestd;//②voidhello(){//③
cout
头文件。
qq_43784519
·
2023-12-24 05:41
学习笔记
c++
算法
开发语言
c++使用递归实现汉诺塔
includeusingnamespacestd;voidmove(conststd::string&src,constintnumber,conststd::string&dst,int&cnt){std::
cout
吴天德少侠
·
2023-12-23 22:10
c++数据结构
c++
java
开发语言
蓝桥杯-每日刷题-027
现在对于输入具体的公里数x(0#includeintmain(){doublex;doublemoney;while(std::cin>>x){if(x3){money=6+1.4*(x-3);}std::
cout
-李慢慢
·
2023-12-23 19:29
蓝桥杯
c++
算法
回调函数之
vectornums{5,3,8,6,9,1,4,7,2};autoit2=find_if(nums.begin(),nums.end(),[&](inti)->bool{returni>sz;});std::
cout
x
超越✔
·
2023-12-23 17:25
c++
开发语言
牛客练习赛87.C-牛老板(记忆化搜索&当前最优选择&贪心)
代码:#include#defineintlonglong#definedbg(x)
cout
mp;int
I_have_a_world
·
2023-12-23 14:41
#
ACM_杂项
记忆化搜索
最优解
贪心
在c++中,int如何转string
示例如下:#include#includeintmain(){intnum=42;std::stringstr=std::to_string(num);std::
cout
<<"转换后的字符串为
weixin_43972388
·
2023-12-23 13:06
c++
开发语言
算法
《Effective C++》条款39
(通过在子类调用父类函数)classA{public:virtualvoidtest(){
cout
<<"A"<
荷兰的乳牛
·
2023-12-23 13:02
Effective
C++
c++
人工蜂群算法(Artificial Bee Colony,ABC)
ABC算法分为三个角色:引领蜂(EmployedBees)、跟随蜂(OnlookerBees)和侦察蜂(S
cout
Bees)。
秦_天明
·
2023-12-23 05:22
人工智能
1006 换个格式输出整数 (15 分)-PAT (Basic Level) Practice (中文)
(){intn=0;cin>>n;strings=to_string(n);if(n>0&&n=10&&n<100)s.insert(0,"0");for(inti=0;i
cout
jtpYz
·
2023-12-22 19:56
PTA乙级(C++)
蓝桥杯
职场和发展
JVM(八)-垃圾回收机制与垃圾收集器
JVM垃圾回收(GC)模型垃圾判断算法GC算法垃圾收集器的实现和选择垃圾判断算法引用计数法(Reference
Cout
ing)算法逻辑给对象添加一个引用计数器,当一个地方引用它,计数器+1,当引用失效,
r09er
·
2023-12-22 05:46
C++学习笔记
include//预编译指令usingnamespacestd;//命名空间,只能在定义全局范围,不可定义在函数内部intmain(){inta=10;int&b=a;//&这里是引用,本质等价,且地址相同
cout
孔镜观栏
·
2023-12-22 04:38
c++
学习
笔记
C++ STL 迭代器失效
一、学习资料STL迭代器的使用二、vector容器获取值是下标法和at()的区别vectorvA;intarray[]={0,1,2,3,4};vA.assign(array,array+5);
cout
bug远离Jemma
·
2023-12-22 04:07
c++
开发语言
OOP习题(14)
裁判测试程序样例:#includeusingnamespacestd;/*请在这里填写答案*/intmain(void){Fractionf1;Fractionf2;cin>>f1>>f2;
cout
>d
博学者普克尔特
·
2023-12-22 02:12
面向对象程序设计
c++
学习
重载new 和delete
#includeusingnamespacestd;//重载new和deletevoid*operatornew(size_tsize){
cout
a=a;}void*operatornew(size_tsize
a7777777i
·
2023-12-22 00:45
c++
【C++】C++中的继承
classPerson{public:voidPrint(){
cout
pro
神化我
·
2023-12-22 00:45
c++
继承
C++中关于私有继承向上转型的问题
也就是说下面这样的代码并不可以#includeusingnamespacestd;classA{private:virtualvoidfoo(){
cout
(newB());//errorBb;b.foo
__JAN__
·
2023-12-22 00:13
C++
c++
开发语言
继承
类型转换
【C++】cin&
cout
细节
注意在这里我们可以使用如下命令查看当前文件夹的文件信息.我的目录结构如下图所示:最后我们代码的编译执行结果如下:上述案例我们最简单的使用了一下
cout
对象进行输出。那么
cout
老九君
·
2023-12-21 23:45
C++ 枚举的用法
includeenumNavigationState{PLANNING,CONTROLLING,CLEARING};intmain(){NavigationStatestate=CLEARING;if(state==PLANNING){std::
cout
Jack Ju
·
2023-12-21 16:24
c++
c++
开发语言
c++猜拳小游戏(AI出文)
#include#includeusingnamespacestd;intmain(){srand(time(NULL));//设置随机数种子intuserChoice,computerChoice;
cout
酷影kuying
·
2023-12-21 14:50
c++
游戏
上一页
26
27
28
29
30
31
32
33
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他