For Java Beginners ( FJB )
144 subscribers
24 photos
2 videos
10 files
11 links
This channel is for beginner.
Download Telegram
PlayStore ရတဲ့သူကလဲ HTML Myanmar ဆိုပြီး PlayStore မှာ Install ရပါတယ်
Bootstrap5-book-by-Ei-Maung.pdf
8.7 MB
I am sharing 'Bootstrap5-book-by-Ei-Maung' with you
❤1🥰1
JavaScript-Book-by-Ei-Maung.pdf
1.9 MB
I am sharing 'JavaScript-Book-by-Ei-Maung' with you
🥰1
PHP-Book-by-Ei-Maung.pdf
4.4 MB
I am sharing 'PHP-Book-by-Ei-Maung' with you
🥰1
Laravel8-book-by-Ei-Maung.pdf
3.2 MB
I am sharing 'Laravel8-book-by-Ei-Maung' with you
🥰1
API-book-by-Ei-Maung.pdf
1.7 MB
I am sharing 'API-book-by-Ei-Maung' with you
🥰1
React-book-by-Ei-Maung.pdf
2 MB
I am sharing 'React-book-by-Ei-Maung' with you
🥰2
Linux-3.pdf
9.1 MB
I am sharing 'Linux-3' with you
😍1
Linux basic စာအုပ်လေးပါ
PHP ebook စာအုပ်လေးပါ
Programmin လေ့လာရင် English ကိုတော့ ရေးတတ် ဖတ်တတ်ဖို့တော့ လိုမယ်နော်
https://dbbasic.saturngod.net/book/cover.html

Database လေ့လာချင်သူတွေအတွက် တွေ့လို့တင်ပေးလိုက်တာ
❤5😍2👍1👏1
Channel name was changed to ÂŤFor BeginnersÂť
java သမားတွေ ပြန်လေ့လာကြည့်ကြ စာပြန်နွေးတာပေါ့ ရေးလဲ ရေးကြည့်ပါ practice များများလုပ်ဖို့လိုတယ် တကယ်တော်ချင်ရင်😍😍
👍1
java
import java.util.Scanner;

public class GuessingGame {
public static void main(String[] args) {
int secretNumber = (int) (Math.random() * 100); // Generate a random number between 0 and 99
int attempts = 0;
boolean hasWon = false;

Scanner scanner = new Scanner(System.in);

System.out.println("Welcome to the Guessing Game!");
System.out.println("I'm thinking of a number between 0 and 99.");

while (!hasWon) {
System.out.print("Take a guess: ");
int guess = scanner.nextInt();
attempts++;

if (guess < secretNumber) {
System.out.println("Too low! Try again.");
} else if (guess > secretNumber) {
System.out.println("Too high! Try again.");
} else {
hasWon = true;
System.out.println("Congratulations! You guessed the number in " + attempts + " attempts.");
}
}

scanner.close();
}
}
java Beginner တွေအတွက် Telegram ChatGpt ကို ရေးခိုင်းပြီး လေ့လာကြရအောင် ဆရာသင်ပေးထားတဲ့ စာတွေကို ကိုယ်တကယ်ရမရ ကြည့်ကြအောင်

ပြီတော့ ဘယ်လိုရေးရလဲ

AI ရေးထားတဲ့ code တွေကို ကိုယ်ပိုင် edit လုပ်ကြည့်ကြပါ