commit 83ddf4d68ef6ce94dabc9a548cbcf766994f0def Author: 250406 <250406@localhost> Date: Wed Nov 19 17:16:10 2025 +0000 ola diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..11a40ea --- /dev/null +++ b/pom.xml @@ -0,0 +1,13 @@ + + + 4.0.0 + com.mycompany + A + 1.0-SNAPSHOT + jar + + UTF-8 + 24 + com.mycompany.a.A + + \ No newline at end of file diff --git a/src/main/java/com/mycompany/a/A.java b/src/main/java/com/mycompany/a/A.java new file mode 100644 index 0000000..d959f43 --- /dev/null +++ b/src/main/java/com/mycompany/a/A.java @@ -0,0 +1,19 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + */ + +package com.mycompany.a; + +import java.util.Scanner; + +/** + * + * @author 250406 + */ +public class A { + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + System.out.println(""); + } +}