79764116

Date: 2025-09-14 06:20:41
Score: 1.5
Natty:
Report link

import java.util.Scanner;

public class Birthday

{

public static void main(String[]args)

{

  int birthday;

  int age;

  int YearOfBirth;

  Scanner keyboard = new Scanner( System.in);

  System.out.println(" What is your +Age ?");

  age = keyboard.nextInt();

  YearOfBirth= 2006 - age;

  System.out.println("I was born :+ YearsOfBirth.");

}

}

Reasons:
  • Blacklisted phrase (1): What is your
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Snigdha Das