突然看到echo "scale=100; a(1)*4" | bc -l可以输出圆周率,很惊奇,后来发现很简单. 首先bc是“basic calculator”的缩写,就是初级的计算器:Linux键入如下命令,可查看: [root@server]# bc -lbc 1.06Copyright 1991-1994, 1997, 1998, 2000 Free Software Foundation, Inc.This is free software with ABSOLUTELY NO…
Linux系统中,我们可以安装bc计算器用来计算pi值(π圆周率) 在玩的同时,这可以从某些方面反映出一个CPU的运算能力,在命令最前加上time即可 如果系统中没有bc命令,需要先进行安装:yum install bc -y 然后再执行如下命令,即可计算π圆周率,至于多少位.可以自己指定,这里只计算到30位,如下: [root@qq_5201351 ~]# echo "scale=30; a(1)*4" | bc -l 3.141592653589793238462643383276…
https://yq.aliyun.com/articles/279384 expr % expr    The  result of the expression is the "remainder" and it is com‐    puted in the following way.  To compute a%b, first a/b is  com‐    puted to scale digits.  That result is used to compute a-(…
04. 直接编辑文件命令方法 a 如何直接在文件中添加单行内容 echo "oldboy" >>/oldboy/oldboy.txt 补充: echo命令用法说明: 01. 请在屏幕上输出 oldboyedu.com信息 02. 请在屏幕上输出 1 2 3 .... 100 的数字信息 输出序列信息 a 显示连续的序列 [root@oldboyedu ~]# echo {1..100} 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18…
总结:空格???懂否?如何显示 for(int i=0;i<100;i++){ if(i%10==0){ System.out.println(); } System.out.print(n[i]);//这种空格控制类型.类似打印星星.金字塔形,直角,等腰.好好琢磨 } package com.da; //输出10个一行的随机数 //100个数10个一行的输出 import java.util.Random; public class hk { public static void main(S…
Linux命令 ls -l s输出内容含义详解   1. ls  只显示文件名或者文件目录 2. ls -l(这个参数是字母L的小写,不是数字1) 用来查看详细的文件资料 在某个目录下键入ls -l可能会显示如下信息: 文件属性(占10个字符空间)       文件数         拥有者       所属的group      文件大小        建档日期           文件名            drwx------                              2…
echo -e 输出带颜色字体或者背景用法:example: echo -e "\033[41;36m something here \033[0m" 其中41的位置代表底色, 36的位置是代表字的颜色 字背景颜色范围:40----49 40:黑 41:深红 42:绿 43:黄色 44:蓝色 45:紫色 46:深绿 47:白色 字颜色:30-----------39 30:黑 31:红 32:绿 33:黄 34:蓝色 35:紫色 36:深绿 37:白色 ===============A…
#include<stdio.h> #include<math.h> int main() { int count,m,n,i; count=; ;m<;m++) { n=sqrt(m); ;i<=n;i++) ) break; if(i>n) { count++; ==) printf("%3d",m); !=) printf("%4d",m); ==) printf("\n"); } } printf…
bc 命令:     bc 命令是用于命令行计算器. 它类似基本的计算器. 使用这个计算器可以做基本的数学运算. [tough@localhost *|bc [tough@localhost expr]$ echo '8+2'|bc [tough@localhost expr]$ echo "8 -2"|bc 把要计算工的内容放入文件中: [tough@localhost expr]$ echo "4+5" > cal.txt [tough@localhost…