Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mohit_Dhaker-21BCE11110: User Greetings code #16

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Mohit-21BCE11110.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
user=input("ENTER YOUR NAME: ")
print(f"Hi {user}, Greetings from mohit")
24 changes: 24 additions & 0 deletions Shashwat21BCE11378.java
Original file line number Diff line number Diff line change
@@ -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));

}
}

}