diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..e208459 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..0b2d0b2 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Java-Calculator.iml b/Java-Calculator.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/Java-Calculator.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/firstcalculator/b1.java b/src/firstcalculator/b1.java new file mode 100644 index 0000000..3df4fa0 --- /dev/null +++ b/src/firstcalculator/b1.java @@ -0,0 +1,17 @@ +package firstcalculator; + +public class b1 { + int income; + + public int getIncome() { + return income; + } + + public void setIncome(int income) { + this.income = income; + } + + public b1(int income) { + this.income = income; + } +} diff --git a/src/firstcalculator/master.java b/src/firstcalculator/master.java new file mode 100644 index 0000000..a7df334 --- /dev/null +++ b/src/firstcalculator/master.java @@ -0,0 +1,18 @@ +package firstcalculator; + +public class master { + int roll; + + public master(int roll) { + this.roll = roll; + } + + public int getRoll() { + return roll; + } + + public void setRoll(int roll) { + this.roll = roll; + } + +}