测试使用语言:【Python】
由于此类语言入门非常容易,哪怕初中生亦可以,并且本科/研究生写论文、做实验多数所用语言都是【Python】故而选择此语言。
代码运行平台:【win10 x64】
代码环境安装:【https://blog.csdn.net/feng8403000/article/details/113784766】
代码编码格式:【https://blog.csdn.net/feng8403000/article/details/113785344】
完整的vs搭建并使用【Python】,非常简单,基础部分无需任何环境配置,工具自带即可。
1、整数运算:【四则运算、整除、幂运算、取余、位移】
程序运算分为:【+, -, *, /, //, **, %分别表示加法或者取正、减法或者取负、乘法、除法、整除、乘方、取余。>>, <<表示右移和左移。】
x=-20#负数 y=+3#正数 print("{0}+{1}={2}".format(x,y,(x+y)))#加法 print("{0}-{1}={2}".format(x,y,(x-y)))#减法 print("{0}*{1}={2}".format(x,y,(x*y)))#乘法 print("{0}/{1}={2}".format(x,y,(x/y)))#除法 print("{0}//{1}={2}".format(x,y,(x//y)))#整除 print("{0}**{1}={2}".format(x,y,(x**y)))#幂运算 print("{0}%{1}={2}".format(x,y,(x%y)))#取模(取余) print("{0}>>{1}={2}".format(x,y,(x%y)))#向右唯一 print("{0}<<{1}={2}".format(x,y,(x%y)))#向左位移
2、普通浮点数计算:【小数计算与位移运算】
x=-20.5#负数 y=+3.6#正数 print("{0}+{1}={2}".format(x,y,(x+y)))#加法 print("{0}-{1}={2}".format(x,y,(x-y)))#减法 print("{0}*{1}={2}".format(x,y,(x*y)))#乘法 print("{0}/{1}={2}".format(x,y,(x/y)))#除法 print("{0}//{1}={2}".format(x,y,(x//y)))#整除 print("{0}**{1}={2}".format(x,y,(x**y)))#幂运算 print("{0}%{1}={2}".format(x,y,(x%y)))#取模(取余) print("{0}>>{1}={2}".format(x,y,(x%y)))#向右唯一 print("{0}<<{1}={2}".format(x,y,(x%y)))#向左位移