Upload files to "OOP/Java/Lab/Week1"

This commit is contained in:
Aadit Agrawal 2024-08-05 01:06:44 +05:30
parent 8542582101
commit 181f9113d2
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,7 @@
class HelloWorld
{
public static void main(String args[])
{
System.out.println("Hello, World.");
}
}

View File

@ -0,0 +1,18 @@
class OddNumbers
{
public static void main(String args[])
{
int a,i;
System.out.println("Odd Numbers List from 1 to 100.");
for(i=1;i<=100;i++)
{
a = i;
if(i%2 != 0){
System.out.println(+a);
}
}
}
}