Skip to content
This repository was archived by the owner on Dec 28, 2024. It is now read-only.

Commit 4d47dcc

Browse files
authored
Merge pull request #56 from Pastor/features/lab2
Вторая лабораторная работа
2 parents 06fccd9 + 57eca2e commit 4d47dcc

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

students/24K0459/24K0459-p02/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<artifactId>24K0459</artifactId>
7+
<groupId>ru.mirea.practice</groupId>
8+
<version>2024.1</version>
9+
<relativePath>../pom.xml</relativePath>
10+
</parent>
11+
<artifactId>24K0459-p02</artifactId>
12+
<description>?</description>
13+
</project>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package ru.mirea.practice.s24k0459;
2+
3+
import java.util.Scanner;
4+
5+
public final class Main {
6+
7+
private Main() {
8+
try (Scanner scanner = new Scanner(System.in)) {
9+
scanner.nextLine();
10+
}
11+
}
12+
13+
public static void main(String[] args) {
14+
new Main();
15+
}
16+
}

students/24K0459/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@
1414

1515
<modules>
1616
<module>24K0459-p01</module>
17+
<module>24K0459-p02</module>
1718
</modules>
1819
</project>

0 commit comments

Comments
 (0)