📄 ch20_3.cpp
字号:
//**********************
//** ch20_3.cpp **
//**********************
#include "listtmp.h"
void main()
{
List<float> floatList;
for(int i=1; i<7; i++)
floatList.Add(*new float(i+0.6));
floatList.PrintList();
float b=3.6;
float* pa=floatList.Find(b);
if(pa)
floatList.Remove(*pa);
floatList.PrintList();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -