SHELL/Python实现九九乘法表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SHELL/Python实现九九乘法表相关的知识,希望对你有一定的参考价值。
shell:a99.sh
#!/bin/bash for ((i=1;i<10;i++));do for((j=1;j<=$i;j++));do let num=$i*$j echo "$i * $j ="$num done echo done
Python:a99.py
#!/usr/bin/python import sys for i in range(1,10): for j in range(1,i+1): print(" %d*%d=%d" % (i,j,i*j))
学习循环语句的好例子。
本文出自 “[[email protected]卢伟开~]#rm -rf /” 博客,请务必保留此出处http://luweikai.blog.51cto.com/1705672/1785761
以上是关于SHELL/Python实现九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章