标签:参考答案 rgb code style 参考 要求 lse sed rgba
题目要求
输入一串随机数字,然后按千分位输出。
比如输入数字串为“123456789”,输出为123,456,789。
参考答案
#!/bin/bash n=`echo $1|wc -L` for d in `echo $1|sed ‘s/./& /g‘` do n2=$[$n%3] if [ $n2 -eq 0 ] then echo -n ",$d" else echo -n "$d" fi n=$[$n-1] done |sed ‘s/^,//‘ echo
标签:参考答案 rgb code style 参考 要求 lse sed rgba
原文地址:https://www.cnblogs.com/liujunjun/p/14451683.html