08 2022 档案
摘要:// ConsoleApplication3.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <random>
阅读全文
摘要://main.c#include <stdio.h> void getPutChar(); main() { getPutChar(); } void getPutChar() { char c; while((int)(c=getchar())!=27) { putchar(c); } } Com
阅读全文
摘要:In fact,the vim is in editing state.3 ways to solve the issue. If one doesn't work,one by one to try until succeed 1.Press Esc then Shift+zz,it will r
阅读全文
摘要:grep -i -n -r 'keyword' specifilefileHere is the definition:grep is function name to search a pattern in files-i means ignore case-n means output line
阅读全文