diff --git a/README.md b/README.md new file mode 100644 index 0000000..5421129 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +## HEY MY NAME IS SNEHA diff --git a/add.java b/add.java new file mode 100644 index 0000000..712b637 --- /dev/null +++ b/add.java @@ -0,0 +1,7 @@ +public class add + { + public static void main(String args[]){ + System.out.println("hello world"); + } + } + diff --git a/add.py b/add.py deleted file mode 100644 index c571323..0000000 --- a/add.py +++ /dev/null @@ -1,4 +0,0 @@ -a=8 -b=4 -c=a+b -print c diff --git a/addtion.py b/addtion.py new file mode 100644 index 0000000..85c9d8d --- /dev/null +++ b/addtion.py @@ -0,0 +1,4 @@ +a=56 +b=4 +d=a+b +print d diff --git a/calculator b/calculator index 80a04da..a007abc 100644 --- a/calculator +++ b/calculator @@ -13,7 +13,7 @@ int main() { case '+': printf("%.1lf + %.1lf = %.1lf", first, second, first + second); break; - case '-': + case '%': printf("%.1lf - %.1lf = %.1lf", first, second, first - second); break; case '*':