This repository was archived by the owner on Dec 28, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed
src/main/java/ru/mirea/practice/s24k0459 Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 14
14
15
15
<modules >
16
16
<module >24K0459-p01</module >
17
+ <module >24K0459-p02</module >
17
18
</modules >
18
19
</project >
You can’t perform that action at this time.
0 commit comments