Java String to Integer Conversion
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
How to convert string to int in Java?
我正试图弄清楚如何将一个包含整数的字符串转换为一个整数变量。
代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import java.util.Scanner; public class main { public static void main(String args[]) { Scanner input = new Scanner(System.in); System.out.println("Enter date of birth (MM/DD/YYYY):"); String DOB = input.next(); String month = DOB.substring(0, 1); String day = DOB.substring(3, 4); String year = DOB.substring(6, 9); int month1 = month; int age = 0; //age = 2013 - DOB - 1; int age2 = 0; age2 = age + 1; System.out.println("You are" + age +" or" + age2 +" years old"); } } |
我想把
使用