linux下shell编写九九乘法表

  主要语法:类似    1x2       echo   $((1*2))

for 变量 in 值1 值2 值3 ;do
linux命令或者语句
done

时间: 2024-11-07 04:10:21

linux下shell编写九九乘法表的相关文章

linux 下shell 编写脚本

linux 下shell 编写脚本: 1.程序结构练习:编写一个脚本,给定一个正整数,计算出这个数所有位的数字之和. 例如:程序给定输入123,那么应该返回1+2+3=6. 2.程序结构练习:编写一个脚本,给定一个正整数,反序输出这个这个数. 例如:程序输入123,那么应该输出321. 3.Linux命令+shell编程:编写一个程序,实现定时文件备份的功能. 要求: 1.备份某个目录下的所有文件 2.对备份文件进行压缩 3.生成合理的日志文件 4.Shell下的gui(libnotify-bi

使用HTML+shell编写九九乘法口诀脚本

首先Linux操作系统需要安装好httpd,以测试脚本效果: 脚本内容如下: #!/bin/bash CURRENT_HTML=/var/www/html/index.html cat <<EOF > $CURRENT_HTML <html> <head> <title>九九乘法表</title> </head> <body> <table width="30%" border="

使用lambda编写九九乘法表

Java 8 出来有一段时间了,支持lambda表达式 非常的赞. lambda表达式 即匿名方法,属于一种轻量级的封装 lambda表达式的语法由参数列表.箭头符号->和函数体组成.函数体既可以是一个表达式,也可以是一个语句块: (int x, int y) -> x + y () -> 5 (String s) -> { System.out.println(s); } 第一个lambda表达式接收x和y这两个整形参数并返回它们的和: 第二个lambda表达式不接收参数,返回整

shell编程--九九乘法表

九九乘法表 1 #!/bin/bash 2 3 for i in {1,2,3,4,5,6,7,8,9} 4 do 5 for((j=1;j<=i;j++)) 6 do 7 ((product=$i*$j)) 8 echo -ne "\033[47;30m$i"x"$j=$product\033[0m\t" 9 done 10 echo 11 done Code

shell之九九乘法表

echo -n 不换行输出 $echo -n "123" $echo "456" 最终输出 123456 而不是 123 456 echo -e 处理特殊字符 若字符串中出现以下字符,则特别加以处理,而不会将它当成一般文字输出: \a 发出警告声: \b 删除前一个字符: \c 最后不加上换行符号: \f 换行但光标仍旧停留在原来的位置: \n 换行且光标移至行首: \r 光标移至行首,但不换行: \t 插入tab: \v 与\f相同: \\ 插入\字符: \nnn

Python编写九九乘法表

x = 1 while x < 10:     y = list(range(x))     for z in y:         z += 1         print('%d * %d = %d' % (x,z,x*z),end = ' ')     x += 1     print('\n')

关于使用C#编写 九九乘法表

using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication1{         class Program          { static void Main(string[] args) {                            for (int a = 1; a <= 9; a++)             

Shell脚本:打印九九乘法表

今天用三种不同的方式实现了Shell脚本打印的九九乘法表,代码如下 方法1:使用for循环(a.sh) #!/bin/sh for i in {1,2,3,4,5,6,7,8,9} do for j in {1,2,3,4,5,6,7,8,9} do ((product=$i*$j)) echo -ne $i\*$j=$product"\t" done echo done exit 0 方法2:使用while循环(b.sh) #!/bin/sh i=1 j=1 while [ &quo

Shell练习小程序练习练习——九九乘法表

最近打算重新复习shell,刚好看到shell的运算,想着和初学者一样写个简单的九九乘法表.可以建议在http://www.runoob.com/try/runcode.php?filename=helloworld&type=bash可以直接运行shell脚本,如果不想安装linux环境的话. 先上个代码 #!/bin/bash #使用while循环i=1;while [ $i -le 9 ];do #-le表示小于等于 j=1; while [ $j -le $i ];do echo -n