Tính diện tích hình chữ nhật

 Tính diện tích hình chữ nhậtclass Baitap {    protected int chieuDai, chieuRong;    public static double tinhDienTich(double chieudai,double chieuRong) {        return chieudai * chieuRong;    }    public static void main(String[] args) {        double dai,rong;        Scanner scanner = new Scanner(System.in);        System.out.println("Nhập...

Tính tổng các số chia hết cho 5 trong khoảng từ 1 đến n

 Tính tổng các số chia hết cho 5 trong khoảng từ 1 đến n.public class Demo {    public static void main(String[] args) {        Scanner scanner = new Scanner(System.in);        System.out.println("Nhập n:");        int n = scanner.nextInt();        int sum = 0;        for (int i = 1; i <= n; i++) {         ...

Drag and Drop

 Drag and DropDrag and Drop is one of the common scenarios in automation. In this tutorial, we are going to study the handling of drag and drop events in Selenium WebDriver using the Actions class1. Actions in Selenium WebDriverActions class in Selenium WebDriver. Using the Actions class, we first build a sequence of composite events and then perform it using Action (an interface which represents a single user-interaction)....

Functional Vs Non-Functional Testing

 Functional Vs Non-Functional Testing1. What is Functional Testing?Functional testing is a type of testing which verifies that each function of the software application operates in conformance with the requirement specification. This testing mainly involves black box testing, and it is not concerned about the source code of the application.Every functionality of the system is tested by providing appropriate input, verifying the output...

Unit Test vs Integration Test

Nội dung bài viết 1. What is the Unit Test?2. What is Integration Test?3. Difference Between Unit Test and Integration Test  Unit Test vs Integration Test.1. What is the Unit Test?Unit Tests are conducted by developers and test the unit of code( aka module, component) he or she developed. It is a testing method by which individual units of source code are tested to determine if they are ready to use. It helps to reduce the...

Kiểm tra số hoàn hảo

 Kiểm tra số hoàn hảopublic class Main {  public static void main(String[] args) {    Scanner sc = new Scanner(System.in);    int sum = 0, a;    System.out.println("\n\nNhập vào số cần kiểm tra: ");    a = sc.nextInt();    for(int i=1;i<=a/2;i++){      if(a%i==0)         sum+=i;    }    if(sum==a){      System.out.println(a...

Kiểm tra số chính phương

 Kiểm tra số chính phươngclass SoChinhPhuong {    static boolean checkPerfectSquare(double x)    {        double sq = Math.sqrt(x);        return ((sq - Math.floor(sq)) == 0);    }    public static void main(String[] args)    {        System.out.print("Nhập vào số cần kiểm tra:");        Scanner scanner = new Scanner(System.in); ...

Kiểm tra số nguyên tố

 Kiểm tra số nguyên tốclass SoNguyenTo{    public static void main(String args[])    {        int temp;        boolean isPrime=true;        Scanner scan= new Scanner(System.in);        System.out.println("Nhập vào số cần kiểm tra:");        int num=scan.nextInt();        scan.close();     ...

Tìm ước của một số nguyên

 Tìm ước của một số nguyênimport java.util.Scanner;class Main {  public static void main(String[] args) {    Scanner sc = new Scanner(System.in);    int n;    System.out.println("\n\nNhập vào số cần tìm ước số: ");    n = sc.nextInt();    System.out.printf("Các ước số của %d là: ",n);    for(int i = 1; i <= n; i++){      if(n % i == 0){       ...

Hoán vị hai số

 Hoán vị hai sốclass Main {    public static void main(String[] args) {      Scanner sc = new Scanner(System.in);      float a, b;      System.out.println("\n\nNhập vào số a: ");      a = sc.nextFloat();      System.out.println("Nhập vào số b: ");      b = sc.nextFloat();      a = a - b;      b = a + b;   ...