藍橋杯練習小結

1,輸出小數點後7位 數組

    cout<<fixed<<setprecision(7)<<s<<endl; 函數


2,編譯錯誤 ci

主函數要用int 返回值 字符串


3,動態定義數組 string

int *p=new int[len];
delete[]  p; io


4,截取字符串 編譯

string.sub(index,nums);     index表示從某個下表開始,nums表示截取個數 co


5,如何將string類型的字符串轉爲char * 字符

char c[20];
string s="1234";
strcpy(c,s.c_str()); let

相關文章
相關標籤/搜索