Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
codershiyar committed Apr 18, 2020
1 parent 857dace commit bf9416e
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lesson41/java/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"configurations": [
{
"type": "java",
"name": "CodeLens (Launch) - App",
"request": "launch",
"mainClass": "App",
"projectName": "java_c87954b4"
}
]
}
14 changes: 14 additions & 0 deletions lesson41/java/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

public class App extends Payment {

@Override
public void language(){
System.out.println("اللغة : العربية");
}
public static void main(String[] args) {
App app = new App();
app.payment_method();
app.language();
}

}
16 changes: 16 additions & 0 deletions lesson41/java/Payment.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

public class Payment {

public void payment_method(){
System.out.println("طرق الدفع : ");
System.out.println("1: Visa Card");
System.out.println("2: Master Card");
System.out.println("3: PayPal");
}
public void language(){
System.out.print("Language : Arabic");
}



}

0 comments on commit bf9416e

Please sign in to comment.