bài tập java #6 : mệnh đề IF

HuanBuiThanh
Bài 7 – Mệnh đề if
nếu em đẹp thì tôi sẽ cưa em không thì tôi cưa đứa khác
IF em đẹp THEN tôi sẽ cưa em ELSE tôi cưa đứa khác
IF(em đẹp) tôi sẽ cưa em;
ELSE tôi cưa đứa khác;
Cú pháp (syntax) của mệnh đề IF là
if(mệnh đề) lệnh 1;
else lệnh 2;
Nếu mệnh đề đúng thì thực hiện lệnh 1;
Không thì thực hiện lệnh 2;
Ví dụ
PHP Code:
if(a>bSystem.out.println(“So lon nhat la “+a);
else 
System.out.println(“So lon nhat la “+b);  

*Ta xây dựng một bài toán làm tròn số
Nhập vào một số bất kì. Nếu phần thập phân số này >=0.5, làm tròn tăng lên một đơn vị, ngược lại giảm đi một đơn vị.
PHP Code:
import java.io.*;
public class 
Hello {
                public static 
void main(String[] argsthrows Exception {
                                
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                                
System.out.print("Nhap a: ");
                                
float a Float.parseFloat(in.readLine());
                                
float ketqua=a%1;
                                if(
ketqua>=0.5a=a-ketqua+1;
                                else 
a=a-ketqua;
                                
System.out.println("Ket qua bai toan la: " a);
                }
}  

* Phép điều kiện ? và phép chọn :
- Giả sử có mệnh đề if
if(a> a=2;
else a=0;
Phép điều kiện biểu diễn như sau a=a>b?2:0 nghĩa là nếu chân trị của a>b là đúng thì a=2 nếu là sai thì a=0
* Sau khi học xong if, bạn có rất nhiều bài tập để mà … làm, cổ điển nhất vẫn là giải phương trình bậc một và hai, ngoài ra còn nhiều bài tập khác nữa. Ở đây chỉ có giải phương trình bậc một. Bạn nên tìm nhiều bài tập để tự làm trước khi tiếp tục phần kế.
Ví dụ: phương trình bậc 1
PHP Code:
import java.io.*;
public class 
Hello {
                public static 
void main(String[] argsthrows Exception {
                                
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                                
System.out.println("Giai phuong trinh bac nhat dang ax+b=0");
                                
System.out.print("Nhap he so a: ");
                                
float a Float.parseFloat(in.readLine());
                                
System.out.print("Nhap he so b: ");
                                
float b Float.parseFloat(in.readLine());
                                if(
a==0) {
                                                if(
b==0System.out.println("Phuong trinh vo so nghiem");
                                                if(
b!=0System.out.println("Phuong trinh vo dinh");
                                }
                                else 
System.out.println("Phuong trinh mot nghiem x=" + -b/a);
                }
}  

Getting Info...

Đăng nhận xét

Cảm ơn bạn đã quan tâm và gửi nhận xét tại
http://huanbuithanh.blogspot.com
hãy ghé thăm blog hàng ngày để được cập nhật những thủ thuật mới nhất nhé . thân ái !
Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.