From f7c3712069fca1fd8ad321efc1433d330a8e1018 Mon Sep 17 00:00:00 2001 From: Mohit Date: Fri, 8 Oct 2021 16:14:42 +0530 Subject: [PATCH 1/2] User Greetings --- Mohit-21BCE11110.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Mohit-21BCE11110.py diff --git a/Mohit-21BCE11110.py b/Mohit-21BCE11110.py new file mode 100644 index 0000000..7da226a --- /dev/null +++ b/Mohit-21BCE11110.py @@ -0,0 +1,2 @@ +user=input("ENTER YOUR NAME: ") +print(f"Hi {user}, Greetings from mohit") \ No newline at end of file From 3733887e106167676d17fd9bc7fb8ba9938b317e Mon Sep 17 00:00:00 2001 From: Shashwat Tiwari Date: Fri, 16 Jun 2023 15:08:19 +0530 Subject: [PATCH 2/2] first java code of the repo --- Shashwat21BCE11378.java | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Shashwat21BCE11378.java diff --git a/Shashwat21BCE11378.java b/Shashwat21BCE11378.java new file mode 100644 index 0000000..ec4b212 --- /dev/null +++ b/Shashwat21BCE11378.java @@ -0,0 +1,24 @@ +package OpenSourcEd_HandsOn; + +public class Shashwat21BCE11378{ + public static void main(String[] args) { + String[] anArray = new String[11];{ + + anArray[0] = "Hello"; + anArray[1] = "We"; + anArray[2] = "are"; + anArray[3] = "going"; + anArray[4] = "to"; + anArray[5] = "make"; + anArray[6] = "it"; + anArray[7] = "out"; + anArray[8] = "of"; + anArray[9] = "here"; + anArray[10] = "soon:)"; + + System.out.println(String.join(" ", anArray)); + + } + } + +} \ No newline at end of file