Skip to content
Open
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
8 changes: 5 additions & 3 deletions PracticeProject/src/app/App.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package app;

import java.util.Scanner;

public class App {
public static void main(String[] args) throws Exception {
App app = new App();
Expand Down Expand Up @@ -29,9 +31,9 @@ public double add(int x, int y) {
return x + y;
}

public void uselessFunction1(int what) {
return;
}
public void brianFunction() {
System.out.println("Hi, my name is brian");
}

public void multiplication() {
int i = 2*3;
Expand Down