codeboosterstech commited on
Commit
e3dff5b
·
verified ·
1 Parent(s): bbf5c0b

Update README.md via Space Creator Agent

Browse files
Files changed (1) hide show
  1. README.md +17 -11
README.md CHANGED
@@ -1,12 +1,18 @@
1
- ---
2
- title: Mathss
3
- emoji: ⚡
4
- colorFrom: blue
5
- colorTo: blue
6
- sdk: gradio
7
- sdk_version: 6.2.0
8
- app_file: app.py
9
- pinned: false
10
- ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Simple Calculator
2
+ A simple calculator that performs basic arithmetic operations.
 
 
 
 
 
 
 
 
3
 
4
+ ## Features
5
+ * Add two numbers
6
+ * Subtract two numbers
7
+ * Multiply two numbers
8
+ * Divide two numbers
9
+
10
+ ## Usage
11
+ 1. Enter the first number in the "Number 1" field.
12
+ 2. Enter the second number in the "Number 2" field.
13
+ 3. Select the operation to perform from the "Operation" dropdown menu.
14
+ 4. Click the "Submit" button to get the result.
15
+
16
+ ## Notes
17
+ * Division by zero is not allowed and will result in an error message.
18
+ * This calculator only performs basic arithmetic operations and does not support advanced mathematical functions.