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 testdo1 | |
| { | |
| public static void main(String[] args) | |
| { | |
| // กำหนดค่าตัวแปล | |
| int a =1 ,b = 1, c = 5; | |
| //do คือ เริ่ม วนลูป | |
| do | |
| { |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.example.com.myapplication" > | |
| <uses-permission android:name="android.permission.CAMERA" /> | |
| <uses-feature android:name="android.hardware.camera.autofocus" /> | |
| <uses-feature android:name="android.hardware.camera" /> | |
| <application | |
| android:allowBackup="true" |