package main;
import java.util.Scanner;
public class Method {
float thetich;
final float PI=3.14f;
float bk;
void banKinh () {
Scanner scanner =new Scanner(System.in);
float bk = scanner.nextFloat();
}
float tinhTheTich () {
return (4/3)*PI*bk*bk*bk;
}
}
____________________________________________________________________________________
package main;
import java.util.Scanner;
public class ClassMain {
public static void main(String[] args) {
// TODO Auto-generated method stub
Method hinhTron=new Method ();
System.out.println("Ban kinh la :");
hinhTron.banKinh();
hinhTron.tinhTheTich();
float thetich=hinhTron.tinhTheTich();
System.out.println("Hinh tron co The Tich la :"+thetich);
}
}
cho e hỏi vì sao sau khi Run thì có ra kết quả này ạ. ? mặc dù e có nhập Bán kính=10 nhưng Thể tích vẫn ra 0 ạ ?. vậy lỗi Code của e ở chỗ nào ạ . ac giúp e vs ạ ?