摘要:
1. ls 列出目录内容 [root@localhost usr]# ls bin games include lib lib64 libexec local sbin share src tmp 可以指定要显示的目录: [root@localhost /]# ls /usr bin games i 阅读全文
摘要:
冒泡排序示例: #include<stdio.h> int main() { int a[100], i, j, t, n; scanf_s("%d", &n); // n表示有n个数需要排序 for (i = 0; i < n; i++) // 输入这n个数 { scanf_s("%d", &a[ 阅读全文
摘要:
(一)简单的命令 1. 查看系统时间和日期: [root@localhost ~]# date Wed Dec 8 15:19:05 CST 2021 2. 显示当月的日历 [root@localhost ~]# cal December 2021 Su Mo Tu We Th Fr Sa 1 2 阅读全文