#include #include #include //main()函数的定义 void main( void ) { double y; for(int i=0;i
http://www.codebf.com/read/156960/5608179
#include #include #include #define MAX_PATH 250 main() { //声明变量 char *p,str[MAX_PATH]; //设置新目录 if (mkdir("d:\\ABC")){ cout
http://www.codebf.com/read/156960/5608180
#include #include //main()函数 void main( void ) { //声明字符数组 char string[80],*p; //输入字符串并将其反转 coutstring; p=strrev(string );
http://www.codebf.com/read/156960/5608181
#include #include //main()函数 void main( void ) { //声明字符数组 char string[80],*p; int i; //转换字符串中的小写字母为大写 cout
http://www.codebf.com/read/156960/5608183
#include #include char string[80]; char seps[] = " ,\t\n"; char *token; void main( void ) { //从键盘上输入两个语句 for (int i=1;i
http://www.codebf.com/read/156960/5608184
#include #include void main( void ) { //设置字符串 char string[] = "Fill the string with something"; cout
http://www.codebf.com/read/156960/5608186
#include #include using namespace std; typedef list INTLIST; //从前向后显示list队列的全部元素 void put_list(INTLIST list, char *name) { INTLIST::iterator plist; cout
http://www.codebf.com/read/156960/5608191
#include #include //显示数组的函数模板 template void arr_put(T arr[],int size) { for (int i=0 ;i
http://www.codebf.com/read/156960/5608195
#include #include using namespace std ; typedef stack STACK_INT; void main() { STACK_INT stack1; int i; //判断栈是否空 cout
http://www.codebf.com/read/156960/5608200
#include //定义栈的尺寸 const int SIZE = 100; //定义处理栈的类模板接口 template class stack { T stck[SIZE]; int tos; public: stack(void) { tos = 0; cout
http://www.codebf.com/read/156960/5608201
虫虫下载站 半导体技术网 电子研发网 源码地带 电源技术网 单片机技术网 医疗电子技术 嵌入式系统与单片机