This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Microsoft Word - ~uplawdoc.doc | |
| รัฐธรรมนญูแหง่ราชอาณาจักรไทย1สมเด็จพระปรมินทรมหาภูมพิลอดุลยเดช | |
| สยามินทราธิราช บรมนาถบพิตร | |
| ตราไว้ ณ วันที่ 24 สิงหาคม พุทธศักราช 2550 | |
| เป็นปีที่ 62 ในรัชกาลปัจจุบัน | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "20150601": 3000000, | |
| "20150602": 2000000, | |
| "20150603": 1000000 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "one": "Singular sensation", | |
| "two": "Beady little eyes", | |
| "three": "Little birds pitch by my doorstep" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{ | |
| "date": "20150601", | |
| "position": 3000000 | |
| }, | |
| { | |
| "date": "20150602", | |
| "position": 2000000 | |
| }, | |
| { | |
| "date": "20150603", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Fibonacci{ | |
| let value: Int! | |
| init(value : Int){ | |
| self.value = value | |
| } | |
| func CalculateFibonacci() -> Int { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static void main(String[] args) { | |
| for (int i = 1; i < 10; i++) | |
| System.out.printf("Factorial value of %d is %d\n", i, factorial(i)); | |
| } | |
| public static int factorial(int number){ | |
| int result = number; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Fibonacci { | |
| public static void main(String[] args){ | |
| int pos = 20; | |
| for(int i = 1; i < pos; i++){ | |
| System.out.printf("Fibonacci pos: %d, is %d\n", i, fibonacci(i)); | |
| } | |
| } |
NewerOlder