C 寒假學習筆記(1)

2021-07-09 20:08:25 字數 486 閱讀 1433

using system;

using system.collections.generic;

using system.text;

namespace

test

}}

namespace test

}

const

string city = "布宜諾斯艾利斯";//常量,城市

const

string name = "列奧波爾多·福圖納托·加爾鐵裡·卡斯特利";//常量,姓名

console.writeline(name+"出生在"+city+"的乙個工人家庭");//使用常量

string hobby;

hobby = "劍道";

console.writeline("我愛好"+hobby);

C 寒假學習筆記(2)

string a h bing string b bing h string temp temp a a b b temp console.writeline 我叫,不叫 a,b console.writeline 9 2.2 輸出11.2 console.writeline 9 2.2 輸出92....

寒假學習1

需要安裝android studio以及jdk。詳細步驟 android是google開發的作業系統。android開發是移動應用開發的表現形式之一。android開發完整專案最精簡流程 android客戶端連線網路介面,讀取資料庫資訊,資料庫把資訊反饋給網路介面,在反饋給客戶端。android開發...

寒假c 四五六學習筆記

常量列舉 常量語法 const 型別 常量名 常量值 在定義時賦值,在其他地方不允許賦值 列舉 列舉的本質是變數一樣都是儲存資料 特點 1限制使用者不能隨意賦值,只能在定義列舉時列舉的值中選擇 2不需要死記每乙個值是什麼,只需要選擇相應的值。語法 enum 自己起的型別名稱 值1,值2,值3 值n ...