迷你微笑

文章
5
资源
0
加入时间
2年10月21天

CCF(202006-2)—— 稀疏向量

第一次提交(60分)代码如下:import java.util.Scanner;public class Main { public static void main(String[] args) { // write your code here Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int a = scanner.nextInt(); ..

Oracle 11g export table to text file

env: Windows Server 2008R2        Oracle 11g在SQL Server環境中可以透過SSMS把資料庫的table匯出為檔案或是透過sqlcmd來產生文字檔,Oracle環境下常用的工具是Toad.若要透過指令則是要利用"utl_file"達到匯出為文字檔,並且以逗號做分隔1.首先我們要建立"utl_file_dir"的directorycommand:cre...

Linux进程间通信(6.5)

进程通信方式 一.无名管道  (1)创建无名管道 #include int pipe(int pipefd[2]);功能:创建无名管道 参数:pipefd 获得文件描述符,pipefd[0]:用于读管道,pipefd[1]:用于写管道传参方法 int pfd[2];if(pipe(pfd) 返回值:成功返回