-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiplication-table.sh
39 lines (35 loc) · 1.22 KB
/
multiplication-table.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# Prompt the user to enter a number
echo "Enter a number: "
read number
# Ask if the user wants a full table or partial table
echo "Do you want a full table or a partial table? (enter 'f' for full, 'p' for partial)"
read table_type
if [ "$table_type" == "f" ]; then
# Generate a full multiplication table in ascending order
echo "Multiplication table for $number (Ascending):"
for i in {1..10}
do
result=$((number * i)) # No spaces around '='
echo "$number x $i = $result"
done
elif [ "$table_type" == "p" ]; then
# Prompt for the start and end number of the range
echo "Enter the start number of the range: "
read start
echo "Enter the end number of the range: "
read end
# Validate the range
if [ "$start" -le "$end" ]; then
echo "Multiplication table for $number in the range $start to $end:"
for i in $(seq $start $end)
do
result=$((number * i)) # No spaces around '='
echo "$number x $i = $result"
done
else
echo "Invalid range. The start number must be less than or equal to the end number."
fi
else
echo "Invalid input. Please enter 'f' for full table or 'p' for partial table."
fi