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
1 change: 1 addition & 0 deletions CSE-B/gaurav joshi/1018484
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

5 changes: 5 additions & 0 deletions CSE-B/gaurav joshi/hello world.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
11 changes: 11 additions & 0 deletions CSE-B/gaurav joshi/printnumber.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
public class Display
{
public static void main(String args[])
{

for (int i=1; i<=10; i++)
{
System.out.print(i+" ");
}
}
}