Programming Fundamental

Just an initial demo map, so that you don't start with an empty map list ...

Get Started. It's Free
or sign up with your email address
Programming Fundamental by Mind Map: Programming Fundamental

1. Function

1.1. ชนิดของFunction

1.1.1. Function without parameter

1.1.2. Function with parameter

2. Variables

2.1. การใช้

2.1.1. ประกาศ

2.1.1.1. int x;

2.1.2. กำหนด

2.1.2.1. x=10;

2.1.3. เรียกใช้

2.1.3.1. ellipse(x,10,50,50);

2.2. ชนิดของVariable

2.2.1. global variable

2.2.2. local variable

3. ฺBasic Drawing

3.1. line();เส้นตรง

3.2. ellipse( );วงกลม หรือวงรี

3.3. quad( );สีเหลี่ยม

3.4. rect( );สี่เหลี่ยม

3.5. triangle( );สามเหลี่ยม

3.6. arc( );เส้นโค้ง

4. Condition

4.1. if เป็นคำสั่งที่ใช้ในการตรวจสอบเงื่อนไข

4.2. รูปแบบการใช้ if(condition){ statement } else{ statement }