Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
0c94914
Update add.py
CodeTalkers2024 Jan 30, 2024
0caaea5
Update add.py
CodeTalkers2024 Feb 6, 2024
3f884dd
Update add.py
CodeTalkers2024 Feb 6, 2024
723d5a8
Create add.java
CodeTalkers2024 Feb 6, 2024
545536b
Update add.java
CodeTalkers2024 Feb 6, 2024
39a6382
Update calculator
CodeTalkers2024 Feb 6, 2024
27aeefd
Update add.java
CodeTalkers2024 Feb 6, 2024
f8a02c0
new changes
CodeTalkers2024 May 27, 2024
8bcd94e
Update add.py
CodeTalkers2024 May 27, 2024
7e81789
Update add.py
CodeTalkers2024 May 27, 2024
85e5b97
new changes
CodeTalkers2024 May 27, 2024
6acb31b
Update add.py
CodeTalkers2024 May 27, 2024
2296e43
Update add.py
CodeTalkers2024 May 27, 2024
9f0cb1c
Update add.py
CodeTalkers2024 May 27, 2024
c68c744
first commit
CodeTalkers2024 May 27, 2024
2d2c0e8
first commit
CodeTalkers2024 May 27, 2024
f83dc94
Update add.py
CodeTalkers2024 May 27, 2024
9420800
first commit
CodeTalkers2024 May 27, 2024
6607bb6
merged
CodeTalkers2024 May 27, 2024
3b1b724
Update add.py
CodeTalkers2024 May 27, 2024
22995cd
Update and rename add.py to addtion.py
CodeTalkers2024 May 27, 2024
b02f3d4
neww
CodeTalkers2024 May 27, 2024
d95c49d
Update addtion.py
CodeTalkers2024 May 27, 2024
e678850
Update addtion.py
CodeTalkers2024 May 27, 2024
b4836e7
fsample
CodeTalkers2024 May 28, 2024
e5eea7a
Update addtion.py
CodeTalkers2024 May 28, 2024
5b876db
Update addtion.py
CodeTalkers2024 May 28, 2024
ef0db16
s
CodeTalkers2024 May 28, 2024
5524dbb
Update addtion.py
CodeTalkers2024 May 28, 2024
392b125
Update addtion.py
CodeTalkers2024 May 28, 2024
af45e8c
first commit
CodeTalkers2024 May 28, 2024
2c27c8e
Update addtion.py
CodeTalkers2024 May 28, 2024
6464af9
Update addtion.py
CodeTalkers2024 May 28, 2024
e08f148
Update addtion.py
CodeTalkers2024 May 28, 2024
d9d5f8c
Create README.md
CodeTalkers2024 May 28, 2024
2b8a169
Update addtion.py
CodeTalkers2024 May 28, 2024
9ba48e7
Update addtion.py
CodeTalkers2024 May 28, 2024
12bb6e9
fd
CodeTalkers2024 May 28, 2024
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## HEY MY NAME IS SNEHA
7 changes: 7 additions & 0 deletions add.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
public class add
{
public static void main(String args[]){
System.out.println("hello world");
}
}

4 changes: 0 additions & 4 deletions add.py

This file was deleted.

4 changes: 4 additions & 0 deletions addtion.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
a=56
b=4
d=a+b
print d
2 changes: 1 addition & 1 deletion calculator
Original file line number Diff line number Diff line change
Expand Up @@ -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 '*':
Expand Down