shell编程系列5--数学运算
shell编程系列5--数学运算 方法1 expr $num1 operator $num2
方法2 $(($num1 operator $num2)) expr操作符对照表1
操作符 含义
num1 | num2 num1不为空且非0,返回num1;否则返回num2 num1 & num2 num1不为空且非0,返回num1;否则返回0 num1 < num2 num1小于num2,返回1;否则返回0 num1 <= num2 num1小于等于num2,返回1;否则返回0 num1 = num2 num1等于num2,返回1;否则返回0 num1 != num2 num1不等于num2,返回1;否则返回0 num1 > num2 num1大于num2,返回1;否则返回0 num1 >= num2 num1大于等于num2,返回1;否则返回0 expr操作符对照表2
操作符 含义
num1 + num2 求和
num1 - num2 求差
num1 * num2 求积
num1 / num2 求商
num1 % num2 求余数 bash数学运算之expr: # 比较大小,只能对整数进行比较
[root@es01 ~]# num1=
[root@es01 ~]# num2= # 错误:没有加空格
[root@es01 ~]# expr $num1>$num2
[root@es01 ~]# echo $? [root@es01 ~]# echo $num2 # 错误:没有转义
[root@es01 ~]# expr $num1 > $num2 # 正确写法
[root@es01 ~]# expr $num1 \> $num2 [root@es01 ~]# num1=
[root@es01 ~]# echo $num1 [root@es01 ~]# expr $num1 \> $num2 # 小于、小于等于、大于等于
[root@es01 ~]# expr $num1 \< $num2 [root@es01 ~]# expr $num1 \<= $num2 [root@es01 ~]# expr $num1 \>= $num2 # 运算 加、减、乘、除
[root@es01 ~]# num1=
[root@es01 ~]# num2=
[root@es01 ~]# expr $num1 + $num2 [root@es01 ~]# num3=`expr $num1 + $num2`
[root@es01 ~]# echo $num3 [root@es01 ~]# expr $num1 - $num2 [root@es01 ~]# expr $num1 \* $num2 [root@es01 ~]# expr $num1 / $num2 # 取余数
[root@es01 ~]# expr $num1 % $num2 # 两个小括号的计算方法,要赋值,否则会报错
[root@es01 ~]# $(($num1+$num2))
-bash: : command not found
[root@es01 ~]# num3=$(($num1+$num2))
[root@es01 ~]# echo $num3 [root@es01 ~]# num3=$(($num1*$num2))
[root@es01 ~]# echo $num3 [root@es01 ~]# num3=$(($num1-$num2))
[root@es01 ~]# echo $num3 [root@es01 ~]# num3=$(($num1/$num2))
[root@es01 ~]# echo $num3 # 部分支持,= 不支持
[root@es01 ~]# num3=$(($num1>$num2))
[root@es01 ~]# echo $num3 [root@es01 ~]# num3=$(($num1<$num2))
[root@es01 ~]# echo $num3 [root@es01 ~]# num3=$(($num1=$num2))
-bash: =: attempted assignment to non-variable (error token is "=5") 在比较运算的时候最好使用expr 练习例子: 提示用户输入一个正整数num,然后计算1+++...+num的值;必须对num是否为正整数做判断,不符合应当运行再次输入 # 判断是否大于0
[root@es01 ~]# num1=
[root@es01 ~]# expr $num1 \> # expr只能对整数进行计算,直接用expr 和一个整数计算获取 $? 的值来判断是否为整数
[root@es01 ~]# num1=56.58
[root@es01 ~]# expr $num1 \> [root@es01 ~]# expr $num1 +
expr: non-integer argument
[root@es01 ~]# echo $? [root@es01 ~]# num1= [root@es01 ~]# expr $num1 + [root@es01 ~]# echo $? # 具体脚本
# vim sum.sh
#!/bin/bash
#
while true
do
read -p "please input a positive number: " num
# 判断数是否是整数
expr $num + &> /dev/null
if [ $? -eq ];then
# 判断这个整数是否大于0,大于0返回1
if [ `expr $num \> ` -eq ];then
#echo "yes,positive number"
# $sum没有赋值,默认为0
for((i=;i<=$num;i++))
do
sum=`expr $sum + $i`
done
echo "1+2+3+...+$num = $sum"
# 执行计算需要退出
exit
fi
fi
echo "error,input enlegal"
continue
done # bc介绍
bc是bash内建的运算器,支持浮点数运算 内建变量scale可以设置,默认为0 bc操作符对照表
操作符 含义 num1 + num2 求和
num1 - num2 求差
num1 * num2 求积
num1 / num2 求商
num1 % num2 求余
num1 ^ num2 指数运算 centos7默认没有安装bc命令
yum install -y bc # 交互模式
[root@es01 shell]# bc
bc 1.06.
Copyright -, , , , , Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.
+ - * / % # 小数点保留2位
scale=
/
4.60
# 小数点保留6位
scale=
/
3.285714 # 脚本中使用管道符进行计算
[root@es01 shell]# echo "23+33" | bc [root@es01 shell]# echo "23.3+66" | bc
89.3
# 保留精度 scale=; 用分号隔开
[root@es01 shell]# echo "scale=4;23.3/3.5" | bc
6.6571 # bc示例脚本 [root@es01 shell]# cat bc.sh
#!/bin/bash
# read -p "num1: " num1
read -p "num2: " num2 #echo "scale=4;$num1/$num2" | bc num3=`echo "scale=4;$num1/$num2" | bc` echo "$num1 / $num2 = $num3" [root@es01 shell]# sh bc.sh
num1: 5.6
num2:
5.6 / = 1.8666
shell编程系列5--数学运算的更多相关文章
- shell编程系列16--文本处理三剑客之awk模式匹配的两种方法
shell编程系列16--文本处理三剑客之awk模式匹配的两种方法 awk的工作模式 第一种模式匹配:RegExp 第二种模式匹配:关系运算匹配 用法格式对照表 语法格式 含义 RegExp 按正则表 ...
- shell编程系列15--文本处理三剑客之awk格式化输出printf
shell编程系列15--文本处理三剑客之awk格式化输出printf printf的格式说明符 格式符 含义 %s 打印字符串 %d 打印十进制数 %f 打印一个浮点数 %x 打印十六进制数 %o ...
- shell编程系列6--shell中的函数
shell编程系列6--shell中的函数 .函数介绍 linux shell中的函数和大多数编程语言中的函数一样 将相似的任务或者代码封装到函数中,供其他地方调用 语法格式 第一种格式 name() ...
- shell编程系列3--命令替换
shell编程系列3--命令替换 命令替换 命令替换总结 方法1 `command` 方法2 $(command) 例子1: 获取系统的所有用户并输出 for循环能以空格.换行.tab键作为分隔符 [ ...
- C#)Windows Shell 编程系列5 - 获取图标
原文 C#)Windows Shell 编程系列5 - 获取图标 (本系列文章由柠檬的(lc_mtt)原创,转载请注明出处,谢谢-) 接上一节:(C#)Windows Shell 编程系列4 - 上下 ...
- (C#)Windows Shell 编程系列4 - 上下文菜单(iContextMenu)(二)嵌入菜单和执行命令
原文(C#)Windows Shell 编程系列4 - 上下文菜单(iContextMenu)(二)嵌入菜单和执行命令 (本系列文章由柠檬的(lc_mtt)原创,转载请注明出处,谢谢-) 接上一节:( ...
- (C#)Windows Shell 编程系列3 - 上下文菜单(iContextMenu)(一)右键菜单
原文 (C#)Windows Shell 编程系列3 - 上下文菜单(iContextMenu)(一)右键菜单 接上一节:(C#)Windows Shell 编程系列2 - 解释,从“桌面”开始展开这 ...
- (C#)Windows Shell 编程系列2 - 解释,从“桌面”开始展开
原文 (C#)Windows Shell 编程系列2 - 解释,从“桌面”开始展开 (本系列文章由柠檬的(lc_mtt)原创,转载请注明出处,谢谢-) 接上一篇:(C#)Windows Shell 编 ...
- (C#)Windows Shell 编程系列1 - 基础,浏览一个文件夹
原文 (C#)Windows Shell 编程系列1 - 基础,浏览一个文件夹 (本系列文章由柠檬的(lc_mtt)原创,转载请注明出处,谢谢-) Windows Shell 编程,即 Windows ...
随机推荐
- LeetCode 311. Sparse Matrix Multiplication
原题链接在这里:https://leetcode.com/problems/sparse-matrix-multiplication/description/ 题目: Given two sparse ...
- ArrayList 集合的几种遍历的方法
ArrayList 集合 也可称作动态数组(长度可变),在新建的时候是没有默认长度的,在新增数据长度小于10的时候,ArrayList 的长度会自动设置为10 //了解更多可以按住Ctrl 再点击你 ...
- linux服务器初始化(防火墙、内核优化、时间同步、打开文件数)
#!/bin/bash read -p 'enter the network segment for visiting the server:' ips # 关闭firewalld和selinux s ...
- Mysql 根据时间取出每组数据中最新的一条
下策——查询出结果后将时间排序后取第一条 select * from a where create_time<="2017-03-29 19:30:36"order by c ...
- learning java Calendar类
//Calendar.MONTH ,这是一个特殊于日历的值. //在格里高利历和罗马儒略历中一年中的第一个月是 JANUARY,它为 0:最后一个月取决于一年中的月份数. // //所以这个值的初始值 ...
- COM Error---HRESULT
一.COM Error 调用COM接口产生的错误.几乎所有的COM函数和接口方法都返回类型为HRESULT的值.HRESULT(用于结果句柄)是返回成功.警告和错误值的一种方法.HRESULTs实际上 ...
- mysqli的方法测试小结
<?php class MysqlController extends ControllerBase { public $config = array(); public $mysql = NU ...
- Go程序员面试算法宝典-读后感2-链表
链表作为最基本的数据结构,它不仅仅在实际应用中有着非常重要的作用,而且也是程序员面试笔试必考的内容. 详情请Google吧. 1.如何实现链表的逆序 就地逆序 package main import ...
- 什么是amcl
amcl是一种机器人在2D中移动的概率定位系统. 它实现了自适应(或KLD采样)蒙特卡罗定位方法(如Dieter Fox所述),该方法使用粒子滤波器来针对已知地图跟踪机器人的位姿. 参考: https ...
- python3 枚举定义和使用
定义 在某些情况下,一个类的对象是有限且固定的,比如季节类,它只有 4 个对象:再比如行星类,目前只有 8 个对象.这种实例有限且固定的类,在 Python 中被称为枚举类.程序有两种方式来定义枚举类 ...