1. 程式人生 > >接收從鍵盤輸入的字串格式的年齡,分數和入學時間 轉換為整數、浮點數、日期型別,並在控制檯輸出(型別轉換)

接收從鍵盤輸入的字串格式的年齡,分數和入學時間 轉換為整數、浮點數、日期型別,並在控制檯輸出(型別轉換)

package test;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;

/*
* 2.接收從鍵盤輸入的字串格式的年齡,分數和入學時間
* 轉換為整數、浮點數、日期型別,並在控制檯輸出
* @author Administrator
*
*/
public class TestStringBuffer {
public static void main(String[] args) throws ParseException {
Scanner sc = new Scanner(System.in);
System.out.println(“請輸入年齡:”);
String age = sc.next();
System.out.println(“請輸入分數:”);
String score = sc.next();
System.out.println(“請輸入入學時間:”);
String s = sc.next();
int age1 = Integer.parseInt(age);
double score1=Double.parseDouble(score);
SimpleDateFormat sdf= new SimpleDateFormat(“yyyy-MM-dd”);
//String sd = sdf.format(s);
Date date = sdf.parse(s);
System.out.println(“年齡:”+age1);
System.out.println(“分數:”+score);
System.out.println(date);
}

}