Subscribe to:
Post Comments (Atom)
Cara download Installer windows 10 dalam format ISO
1. Jika anda bercadang untuk download windows 10 melalui website rasmi windows - pilihan untuk download dalam format ISO tidak di berikan. ...

-
Latihan MS Word dengan elemen-elemen:- image, word art, table, shape dan word formatting (font,size,bold, italic,underline)
-
Based on real life scenario on any local company/ organization which you are very familiar, define the problem that could be addressed thr...
-
A. You are required to provide:- (i) Algorithm (Flowchart or Pseudocode) and (ii) Java program for each of the following probl...
1 comment:
import java.util.Scanner;
public class guest {
public static void main(String[] args) {
int guess,x;
x=(int)(Math.random()*101);
Scanner input= new Scanner(System.in);
// TODO, add your application code
System.out.println("Sila teka satu nombor");
guess= input.nextInt();
if(guess==x){
System.out.println("Tahniah");
}
else {
if(guess>x){
System.out.println("Besar sangat");
}
else{
System.out.println("Kecil sangat");
}
}
}
}
Post a Comment