每日一练126——Java我在2099年多大呢?(8kyu)

题目

菲利普刚刚四岁,他想知道未来几年他将会有多大年纪,如2090年或3044年。他的父母无法跟上计算,所以他们恳求你通过编写一个程序来帮助他们。可以回答菲利普无休止的问题。

你的任务是编写一个带有两个参数的函数:出生年份和相对于年份的年份。由于菲利普每天都变得更加好奇,他可能很快就会想知道他出生多少年,所以你的职能需要在未来和过去的两个日期工作。

以这种格式提供输出:对于未来的日期:“你是......年龄。” 对于过去的日期:“你将出生在...年。” 如果出生年份等于要求回报的年份:“你这一年就出生了!”

“......”将由​​数字代替,然后由单个空格继续。请注意,您需要考虑“年”和“年”,具体取决于结果。

祝好运!

测试用例:

import org.junit.Test;
import static org.junit.Assert.assertEquals;
import org.junit.runners.JUnit4;

public class SolutionTest {

AgeDiff age = new AgeDiff();

public static int born;
public static int year;
private static int pom;

    @Test
    public void testAge() {
    
        assertEquals("You are 4 years old.", age.CalculateAge(2012, 2016));
        assertEquals("You are 27 years old.", age.CalculateAge(1989, 2016));
        assertEquals("You are 90 years old.", age.CalculateAge(2000, 2090));
        assertEquals("You will be born in 10 years.", age.CalculateAge(2000, 1990));
        assertEquals("You were born this very year!", age.CalculateAge(3400, 3400));
        assertEquals("You are 2000 years old.", age.CalculateAge(900, 2900));
        assertEquals("You will be born in 110 years.", age.CalculateAge(2010, 1900));
        assertEquals("You will be born in 510 years.", age.CalculateAge(2010, 1500));
        assertEquals("You are 1 year old.", age.CalculateAge(2011, 2012));
        assertEquals("You will be born in 1 year.", age.CalculateAge(2000, 1999));
     
    }
    
    @Test
    public void testRandomAge() {
    
    for(int i = 1; i <= 100; i++){
           born = (int) (100+Math.random()*4000);
           year = (int) (100+Math.random()*4000);
           pom = year-born;
           
     if (pom == 0) assertEquals("You were born this very year!", age.CalculateAge(born, year)); 
    
     if (pom == 1) assertEquals("You are 1 year old.", age.CalculateAge(born, year));
      
     if (pom == -1) assertEquals("You will be born in 1 year.", age.CalculateAge(born, year));
    
     if(pom > 0) assertEquals("You are " + pom + " years old.", age.CalculateAge(born, year));
     else assertEquals("You will be born in " + (-pom) + " years.", age.CalculateAge(born, year));
    
           }
    }
}

解题

My

public class AgeDiff 
{
  public static String CalculateAge(int birth, int yearTo) 
  {
    if (birth < yearTo) {
      if (yearTo-birth == 1) {
        return "You are 1 year old.";
      } else {
        return String.format("You are %s years old.", yearTo-birth);
      }
    } else if (birth > yearTo) {
      if (birth-yearTo == 1) {
        return "You will be born in 1 year.";
      } else {
        return String.format("You will be born in %s years.", birth-yearTo);
      }
    } else if (birth == yearTo) {
      return "You were born this very year!";
    } else {
      return "Error!";
    }
  }
}

Other

public class AgeDiff {

  public static String CalculateAge(int birth, int year) {
    final int age = year - birth;    
    return 
      age == 0 ? "You were born this very year!" :
      age > 0 ? String.format("You are %d year%s old.", age, age == 1 ? "" : "s") :
      String.format("You will be born in %d year%s.", -age, -age == 1 ? "" : "s");
  }
}
class AgeDiff 
{
  public static String CalculateAge(int birth, int yearTo) 
  {
  int a = yearTo - birth;
  
    if (a == 0) return "You were born this very year!";
    
    if (a == 1) return "You are 1 year old.";
      
    if (a == -1) return "You will be born in 1 year.";
    
    return a > 0 ? "You are " + a + " years old." : "You will be born in " + (-a) + " years.";
    
    }
}
public class AgeDiff 
{
  public static String CalculateAge(int birth, int yearTo) 
  {
  int age = Math.abs(yearTo - birth);
  String year = " years";
  if (Math.abs(yearTo - birth) == 1) {year = " year";}
  if (yearTo < birth) {return "You will be born in " + age + year + ".";}
  if (birth < yearTo) {return "You are " + age + year + " old.";}
  return "You were born this very year!";
  }
}

后记

我这丑代码还是可以改改的。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容

  • 爱情,是两个人之间一场旷日持久而又不遗余力的勾心斗角。 1 两个月前的某个晚上。“给我一杯尼格龙尼用手工冰块加两块...
    迟二白阅读 1,332评论 15 13
  • 你的形象与你的个人努力息息相关 你是长得美还是长得丑 其实也有相当一部分由你自己来决定 很多明星也如此 有的年轻帅...
    妍值百科阅读 1,404评论 0 1
  • 好像,我喜欢的人都不喜欢我哎。 时常怀疑自己,哪里都怀疑,我是不是性格不好,我是不是长得不好,我是不是太矮了,我是...
    南浔_南浔_难寻阅读 480评论 0 0
  • 之前定的计划,今天终于把之前落下的作业写完了,只是完成了书面任务,背诵没有完成,英语但是读熟了。 今天是小年,过了...
    大名170房静静阅读 155评论 0 0
  • 1.什么是CAS CAS是一种无锁执行的算法原理。全称Compare And Swap其算法核心思想如下 2.Un...
    胖小白_d797阅读 395评论 0 0