We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c383c7 commit 5ab82c2Copy full SHA for 5ab82c2
.gitignore
@@ -45,4 +45,5 @@
45
/app/Java_Project_58/build/
46
/app/Java_Project_59/nbproject/private/
47
/app/Java_Project_59/build/
48
-/app/Java_Project_60/nbproject/private/
+/app/Java_Project_60/nbproject/private/
49
+/app/Java_Project_60/build/
app/Java_Project_60/src/java_project_60/Java_Project_60.java
@@ -14,8 +14,15 @@ public class Java_Project_60 {
14
/**
15
* @param args the command line arguments
16
*/
17
+ public static int topla()
18
+ {
19
+ int x=5, y=7;
20
+ int toplam = x + y;
21
+ return toplam;
22
+ }
23
public static void main(String[] args) {
24
// TODO code application logic here
25
+ System.out.println(topla());
26
}
27
28
0 commit comments