今天,我主要学习了for循环的嵌套. 第一个部分主要学习了打印直角在不同方向的三角形,求阶乘的和以及打印九九乘法表等. 例:打印直角在左下角的三角形. Console.WriteLine("请输入一个正整数:"); int n = int.Parse(Console.ReadLine()); for (int i = 1; i <= n; i++) { for (int j = 1; j <= i; j++) { Console.Write("■");
1001. A+B Format (20) Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less than four digits). Input Each input file contains one test case. Each case cont
linux的基础操作命令: 常见命令: man 查看帮助文档 用法:man + 命令 help 查看指定命令的用法 用法: 命令 --help(有空格) tab linux下命令与文件名补全 用法:在打出不熟悉的命令或要输入名字过长的文件名时,可以输入开头几个命令的开头,按键盘TAB键,补全命令 whereis 查看命令的出处,包含指定命令人的文件都存在系统的各个位置 which 查看命令的可执行文件位置 history 查看自己使用多的历史命令 磁盘文件操作: ls 查看当前目录下的文件信息