C 上機 第九周 任務1 用於提取檔名

2021-06-10 10:45:57 字數 997 閱讀 8279

/* 

* 程式頭部注釋開始

* 程式的版權和版本宣告部分

* 檔名稱:用於提取檔名

* 作 者:薛廣晨

* 完成日期:2012 年 10 月 22 日

* 版 本號:x1.0

* 對任務及求解方法的描述部分

* 輸入描述:

* 問題描述: 定義乙個靜態成員方法,該方法用於提取檔名。

* 比如,給定乙個字串「c:\program files\maths\all.dat」,使用該方法即可獲取檔名all.dat。

* 自行設計程式驗證上述方法正確性。

public static string getfilename(string file)

* 程式輸出:

* 程式頭部的注釋結束

*/using system;

using system.collections.generic;

using system.linq;

using system.text;

的檔名是", file, str);

console.readkey();

}//方法一

public static string getfilename(string file)

}return file.substring(num);

}//方式二

/*public static string getfilename(string file)

return str;

}*/}

}

執行結果:

第九周任務1

includeusing namespace std class complex complex double r,double i complex operator complex c2 complex operator complex c2 complex operator complex c2...

第九周任務報告1

程式頭部注釋開始 程式的版權和版本宣告部分 作 者 時永傑 完成日期 2012 年 4月 21日 版 本 號 v1.1 include includeusing namespace std class point 定義座標點類 point double x0,double y0 void print...

第九周 任務一

實驗內容 定義complex類中的 和 運算子的過載,實現輸入和輸出。程式的版權和版本宣告部分 檔名稱 定義complex類中的 和 運算子的過載,實現輸入和輸出 作 者 薛廣晨 完成日期 2012 年 4 月 14日 版 本號 x1.0 對任務及求解方法的描述部分 輸入描述 程式頭部的注釋結束 此...