Skip to content
Open
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
9 changes: 9 additions & 0 deletions CSE-B/Abhilash Joshi-1018424/Question1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//Code By Abhilash Joshi
//question 1 Solution
class Question1 //Created Class Question1
{
public static void main(String[] args)
{
System.out.println("Hello World");//Printed Text Hello World
}
}
10 changes: 10 additions & 0 deletions CSE-B/Abhilash Joshi-1018424/Question2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class numbers//Created Class Question2
{
public static void main(String[] args)
{
for(int i = 1; i <= 10; i++)//Using For loop from 1 to 10
{
System.out.println(i);//pring numbers on screen
}
}
}