摘要:
001、 [sy20213040737@admin2 test]$ cat a.txt ## 测试数据 3 8 34 50 [sy20213040737@admin2 test]$ awk '{if(NR == 1){tmp = $1} else {print $1 - tmp; tmp = $1} 阅读全文
posted @ 2024-09-19 10:49
小鲨鱼2018
阅读(58)
评论(0)
推荐(0)
摘要:
001、 [root@localhost test]# ls test.c [root@localhost test]# cat test.c #include <stdio.h> int main(void) { int i; printf("i = "); scanf("%d", &i); if 阅读全文
posted @ 2024-09-19 08:36
小鲨鱼2018
阅读(57)
评论(0)
推荐(0)