刘华世的官方博客
摘要: #include <iostream>#include <string>using namespace std;void changeword(int number);int main(int argc, char* argv){ char number[255]; char* p; cout<<"please input a number!"<<endl; gets(number); //puts(number); p = number; for(;*p!='\0';p++) { //cout << 阅读全文
posted @ 2013-02-17 15:18 pythonschool 阅读(812) 评论(0) 推荐(0) 编辑
刘华世的官方博客