Skip to content

Commit 580a068

Browse files
Done commiting
1 parent 073b8f0 commit 580a068

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Main.java

+9
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,17 @@ public sum(){
55
System.out.println(a+b);
66
}
77
}
8+
class multiply{
9+
public multiply(){
10+
int a=7;
11+
int b=7;
12+
System.out.println(a*b);
13+
}
14+
}
15+
816
public class Main {
917
public static void main(String[] args) {
1018
sum obj=new sum();
19+
multiply ob=new multiply();
1120
}
1221
}

0 commit comments

Comments
 (0)