📄 visit-filter.c
字号:
# include <stdio.h>static char sccsid[] = "@(#)visit-filter.c 1.1 10/6/94";main(np,p) int np; char *p[];{ int low,high,from,to; if (np != 3) exit(1); low = atoi(p[1]); high = atoi(p[2]); while (EOF != scanf("%d%d",&from,&to)){ if ((from >= low) && (from <= high) && (to >= low) && (to <= high)) printf("%d %d\n",from,to); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -