java年齡計算
❶ java計算年齡
import java.util.Calendar;
import java.util.Date;
import java.awt.*;
import java.awt.event.*;
import java.text.NumberFormat;
public class H {
public static void main(String args[]) {
new Time("年齡計算器");
}
}
class Time extends Frame implements ActionListener {
Calendar calendar;
Button button;
TextField t1, t2, t3;
Label l, l1, l2, l3;
Time(String s) {
super(s);
setLayout(new FlowLayout());
button = new Button("確定");
button.addActionListener(this);
t1 = new TextField(2);
t2 = new TextField(2);
t3 = new TextField(2);
l = new Label(" 請輸入您的生日 ");
l.setBackground(Color.cyan);
l1 = new Label("年");
l2 = new Label("月");
l3 = new Label("日");
add(l);
add(t1);
add(l1);
add(t2);
add(l2);
add(t3);
add(l3);
add(button);
setBounds(100, 100, 280, 100);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
setVisible(true);
validate();
}
public void actionPerformed(ActionEvent e) {
calendar = Calendar.getInstance();
calendar.setTime(new Date());
NumberFormat f = NumberFormat.getInstance();
long time = calendar.getTimeInMillis();
if (e.getSource() == button) {
try {
int n = Integer.parseInt(t1.getText());
int y = Integer.parseInt(t2.getText());
int r = Integer.parseInt(t3.getText());
calendar.set(n, y - 1, r);
double time1 = calendar.getTimeInMillis();
double c = (time - time1) / (1000 * 60 * 60 * 24);
double d = c/365;
f.setMaximumFractionDigits(2);
String s = f.format(d);
l.setText("您的年齡約為" + s + " 歲");
} catch (NumberFormatException ee) {
l.setText("請正確輸入");
}
}
}
}
功底淺薄,如果有問題,還望指教。
❷ 在java中,根據年齡,計算出生年份。比如:23歲,1990年出生
這個得用Calendar類
首先獲取現在的日期 Calendar mycalendar=Calendar.getInstance();//獲取現在時間
String 年=String.valueOf(mycalendar.get(Calendar.YEAR));//獲取年份
// 用文本框輸入年齡
int age=text1.getText().parseInt();
int birth=年.parseInt()-age;
System.out.println("birth"年出生);
❸ 年齡自動計算公式
第一步、把已經知道的統計到了一個年月日信息,先在右旁設置一個單元格格式,數值,0位數。
❹ 編寫java代碼計算全班同學年齡
計算全班同學年齡之和。
思路:從鍵盤上依次輸入每個同學的年齡,然後求和輸出:
import java.util.Scanner;
public class TestMain {
public static void main(String[] args) {
int sum=0;
Scanner in =new Scanner(System.in);
int n = in.nextInt();
sum+=n;
System.out.println(sum);
}
}