⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tsortinp.cc

📁 早期freebsd实现
💻 CC
字号:
//  Here's a short program that generates acyclic input to test this program//      against the UNIX tsort.#include <stream.h>#include <stdlib.h>main(int argc,char *argv[]) {  int Dimension = atoi(argv[1]);  for (int y = 1; y < Dimension; y++)     for (int x = 0; x < y; x++)       cout << dec(y,4) << dec(x,4) << "\n";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -