摘要: #include #include int main(){ int count = 1; char str[1024]; int i=0; int j =0; char ch='0'; while(ch != '\n') //输入一串英文 { ... 阅读全文
posted @ 2015-06-06 16:42 道心不可练 阅读(537) 评论(0) 推荐(0) 编辑
摘要: 如程序:#include #include using namespace std;int main(){ int a[]={15,14,13,12,11,10,9,8,7,6,5,4,3,2,1,0}; int i,j; int len = sizeof(a)/sizeof(in... 阅读全文
posted @ 2015-06-06 14:38 道心不可练 阅读(204) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;int main(){ char str[1024]; cin>>str; int i = 0; while(str[i]!='\0') { ... 阅读全文
posted @ 2015-06-06 11:55 道心不可练 阅读(146) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;int mystrcmp(const char * str1,const char * str2){ int i=0; while(1) { if(str1[i]=='\0' &&str2[i]!='\0') ... 阅读全文
posted @ 2015-06-06 11:31 道心不可练 阅读(250) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include using namespace std;int main(){ char p[1024]; cin>>p; int len = strlen(p); int i,j; unsig... 阅读全文
posted @ 2015-06-05 21:48 道心不可练 阅读(1295) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 void getmemory(char *p) 5 { 6 p=(char *) malloc(100); 7 strcpy(p,"hello world"); 8 } 9 10 11 in... 阅读全文
posted @ 2015-06-04 16:33 道心不可练 阅读(252) 评论(7) 推荐(0) 编辑
摘要: #include #include using namespace std;void get_size(char str[100]){ cout<<"size in get_size "<<sizeof(str)<<endl; }int main(){ cha... 阅读全文
posted @ 2015-06-04 15:57 道心不可练 阅读(775) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;class emp{ protected: string name; public: emp(){} virtual ~emp(){} virtual void print() = 0; };class emp... 阅读全文
posted @ 2015-06-04 14:32 道心不可练 阅读(909) 评论(0) 推荐(0) 编辑
摘要: /*下面一段程序中,在named类中设置了两个构造函数,分别设置字符串接收方式为string和char*,当n中显示的设定构造为string时,会调用string参数的构造函数,而m中直接传字符串的方式,调用的是char*构造,在一些C++的教科书中,可能因为编译器的不同而将直接使用字符串常量构造的... 阅读全文
posted @ 2015-06-03 21:34 道心不可练 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 time_t convert_string_to_time_t(const std::string & time_strin... 阅读全文
posted @ 2015-06-02 12:09 道心不可练 阅读(765) 评论(0) 推荐(0) 编辑