Skip to content

Instantly share code, notes, and snippets.

@valkiie
Last active June 13, 2020 05:47
Show Gist options
  • Save valkiie/a3a6bded2c66a5160a2b128cb619508b to your computer and use it in GitHub Desktop.
Save valkiie/a3a6bded2c66a5160a2b128cb619508b to your computer and use it in GitHub Desktop.
JetBrains Academy. simple-chatty-bot
package bot;
import java.util.Scanner;
public class SimpleBot {
final static Scanner scanner = new Scanner(System.in); // Do not change this line
public static void main(String[] args) {
greet("Cookie", "2020"); // change it as you need
remindName();
guessAge();
count();
test();
end();
}
static void greet(String assistantName, String birthYear) {
System.out.println("Hello! My name is " + assistantName + ".");
System.out.println("I was created in " + birthYear + ".");
System.out.println("Please, remind me your name.");
}
static void remindName() {
String name = scanner.nextLine();
System.out.println("What a great name you have, " + name + "!");
}
static void guessAge() {
System.out.println("Let me guess your age.");
System.out.println("Say me remainders of dividing your age by 3, 5 and 7.");
int rem3 = scanner.nextInt();
int rem5 = scanner.nextInt();
int rem7 = scanner.nextInt();
int age = (rem3 * 70 + rem5 * 21 + rem7 * 15) % 105;
System.out.println("Your age is " + age + "; that's a good time to start programming!");
}
static void count() {
System.out.println("Now I will prove to you that I can count to any number you want.");
int num = scanner.nextInt();
for (int i = 0; i <= num; i++) {
System.out.printf("%d!\n", i);
}
}
static void test() {
System.out.println("Let's test your programming knowledge.");
System.out.println("How many days does a leap year has?");
System.out.println("1. 365");
System.out.println("2. 366");
System.out.println("3. 364");
System.out.println("4. 367");
boolean isCorrect = false;
while (!isCorrect) {
int answer = scanner.nextInt();
if (answer == 2) {
isCorrect = true;
} else {
System.out.println("Please, try again.");
}
}
}
static void end() {
System.out.println("Congratulations, have a nice day!"); // Do not change this text
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment