f1408.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f1408.cpp
- // Using List Template Application
- //=====================================
- #include"tlist.h"
- //-------------------------------------
- int main(){
- List<double> dList;
- dList.add(3.6);
- dList.add(5.8);
- dList.print();
- List<int> iList;
- iList.add(5);
- iList.add(8);
- iList.print();
- }//====================================