-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb8a79e
commit 9a0274c
Showing
7 changed files
with
47 additions
and
50 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# <p align="center">Scientific Calculator</p> | ||
|
||
## Description :- | ||
|
||
A fully functional scientific calculator that supports: | ||
|
||
- Trigonometric functions such as sin, cos, tan | ||
- Inverse trigonometric functions like arcsin, arccos, arctan | ||
- Logarithmic functions (log, log10) | ||
- Square roots, cube roots, and other mathematical operations | ||
- A sleek dark-themed UI with enhanced usability and accessibility | ||
|
||
This version also includes: | ||
|
||
- Error handling for invalid input (e.g., "asin(0.5)" or "log(10)"). | ||
- Support for edge cases (e.g., logarithms with values <= 0). | ||
- A clear, user-friendly layout with all buttons styled appropriately, enhancing the overall experience. | ||
- Includes a "Clear" button for resetting the input, a "Delete" button for removing the last character, and an "Equals" button in an orange color to indicate its importance. | ||
|
||
## Tech Stacks :- | ||
|
||
- HTML | ||
- CSS | ||
- JavaScript | ||
|
||
## Screenshots :- | ||
|
||
![image](https://github.com/user-attachments/assets/0fae5a34-a2eb-47ac-a922-c7d9ec4beebf) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,4 +114,4 @@ function calculateResult() { | |
|
||
function toRadians(degrees) { | ||
return degrees * (Math.PI / 180); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,4 +119,4 @@ button:nth-last-child(2) { | |
|
||
.calculator-box { | ||
width: 100%; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters