持續更新中,如果有寫錯的地方歡迎糾正,謝謝各位
指令\程式 | C | C++ | Java | C# | pyhon3 |
程式結構 | |||||
Package import | #include | #include | import | 似乎沒有?需要用安裝 | import |
使用命名空間 | 沒有? | using namespace | import | using | import |
主程式運行 | int mina( ) | int mina( ) | public static void main(String[] args) | public static void Main(string[] args) | X |
程式括號 | {} | {} | {} | {} | X |
函數括號 | ( ) | ( ) | ( ) | ( ) | ( ) |
程式結尾 | ; | ; | ; | ; | X |
回傳 | return | return | return | return | return |
變數命名 | |||||
不須宣告變數類型 | 一定要 | 一定要 | var | var | 直接命名 |
整數 | int | int | int | int | 直接命名 |
浮點數 | float/Double | float/Double | float/Double | float/Double | 直接命名 |
字串 | string | string | string | string | 直接命名 |
字元 | char | char | char | char | 直接命名 |
註解 | |||||
註解 | // | // | // | // | # |
多行註解 | /* 程式*/ | /* 程式*/ | /*程式 */ | /* 程式*/ |
"""程式"""
|
符號 | |||||
字串 | “字串” ‘字串’ | ||||
運算元 | + ,-, *, /, >, <,>=,<=,==,!= ,=,+=,-=.*=,/= | ||||
邏輯運算and or not | &&,||,! | &&,||,! | &&,||,! | &&,||,! | and,or,not &,|,! |
print印出 | |||||
C | printf(“Greeting message: %d\n“, int var); | ||||
C++ | cout << “Greeting message: <<“Hello world” << endl; | ||||
Java | System.out.println( “Hello world“ ); | ||||
C# | Console.WriteLine(Hello world); | ||||
python | print(“Hello world“) | ||||
如果..則..否則 | |||||
C | if(){}else if(){}else{} | ||||
C++ | if(){}else if(){}else{} | ||||
Java | if(){}else if(){}else{} | ||||
C# | if(){}else if(){}else{} | ||||
python | if condition_1: elseif condition_2: else: | ||||
多條件式 | |||||
C | switch(expression){ case value: break; default: } | ||||
C++ | switch(expression){ case value: break; default: } | ||||
Java | switch(expression){ case value: break; default: } | ||||
C# | switch(expression){ case value: break; default: } | ||||
python | X | ||||
迴圈 | |||||
C | while(){} {} do{} while(); for( ; ; ){} | ||||
C++ | while(){} {} do{} while(); for( ; ; ){} | ||||
Java | while(){} {} do{} while(); for( ; ; ){} foreach(var element in sequence){} | ||||
C# | while(){} {} do{} while(); for( ; ; ){}foreach(var element in sequence){} | ||||
python | while condition: , while condition: else: , for var in sequence: else: for i in range(5): |
||||
函數 | |||||
C | pubic/private var name( ){return var } | ||||
C++ | pubic/private var name( ){return var } | ||||
Java | pubic/private var name( ){return var } | ||||
C# | pubic/private var name( ){return var } | ||||
python | def name () : return 任何類型 |
@copyright MRcodingRoom
觀看更多文章請點MRcoding筆記
觀看更多文章請點MRcoding筆記