java Q11219:你多大了?.java
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java Q11219:你多大了?.java相关的知识,希望对你有一定的参考价值。
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
int n = scn.nextInt();
for (int i = 1; i <= n; i++) {
String s1[] = scn.next().split("/"), s2[] = scn.next().split("/");
int DAYS = Integer.parseInt(s1[2]) * 12 * 31 + (Integer.parseInt(s1[1]) - 1) * 31 + Integer.parseInt(s1[0]);
int days = Integer.parseInt(s2[2]) * 12 * 31 + (Integer.parseInt(s2[1]) - 1) * 31 + Integer.parseInt(s2[0]);
if (DAYS - days < 0)
System.out.printf("Case #%d: Invalid birth date\n", i);
else if (DAYS - days >= 131 * 12 * 31)
System.out.printf("Case #%d: Check birth date\n", i);
else
System.out.printf("Case #%d: %d\n", i, (DAYS - days) / (12 * 31));
}
}
}
以上是关于java Q11219:你多大了?.java的主要内容,如果未能解决你的问题,请参考以下文章
JAVA面试潜规则大公开,能帮你多拿5k薪资
Java面试该用什么姿势?做到这些让你多拿5K
实力分享//Java面试该用什么姿势?做到这些让你多拿5K!
蔡徐坤多大了?
这次终于知道 数据库 “连接池” 到底应该设多大了
给段java里的if条件和if else 代码 练习练习