Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Xentention committed Dec 12, 2022
1 parent 7d8e851 commit 05e6c73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Binary file modified jumbledsentences/resources/database/testsDB.mv.db
Binary file not shown.
7 changes: 5 additions & 2 deletions jumbledsentences/src/Demo.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,20 @@ public class Demo {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Привет! Это демоверсия системы тестов, где нужно расставить слова " +
"в предложении в правильном порядке. В случае успешного прохождения теста, разрешается перейти " +
"в предложении в правильном порядке.\nВ случае успешного прохождения теста, разрешается перейти " +
"к следующей теме.");

System.out.println("Введите номер пользователя:");
int ourID = in.nextInt(); //идентификатор пользователя, проходящего тест
in.nextLine(); //очищаем мусор после ввода

while (true){
System.out.println("""
Команды:
/test - начать тест
/putNewTest - предполагается наличие права доступа
/exit - выйти""");

int ourID = 5; //идентификатор пользователя, проходящего тест
switch (in.nextLine()) {
case "/test" -> TestAPI.startTest(ourID);
case "/putNewTest" -> {
Expand Down

0 comments on commit 05e6c73

Please sign in to comment.