代码片段

Rust

Read

use std::{collections::VecDeque, io};
static mut V: VecDeque<i8> = VecDeque::<i8>::new();
macro_rules! read {
    ($x:expr) => {
        unsafe {
            if V.is_empty() {
                let mut buf = String::new();
                io::stdin().read_line(&mut buf).unwrap();
                buf.split_whitespace()
                    .for_each(|x| V.push_back(x.parse().unwrap()));
            }
            $x = V.pop_front().unwrap().into()
        }
    };
}

Quine

fn main() {
    let p:&[i8] = &[32, 0, 0, 0, 80, 2, -9, 5, 6, -83, 7, -6, 68, 8, -78, 77, -12, 8, 5, -70, 1, -9, 91, 0, -31, 18, -78, 0, 0, 0, 76, -7, 15, -84, 80, -54, -20, 53, 14, -49, 37, -61, 29, -29, 6, 85, -65, 5, 62, -66, 33, 18, -76, 10, -12, 80, -71, 18, -49, 22, 0, 0, 0, 76, -7, 15, -84, 77, 8, -1, -84, 67, -67, 29, -29, 16, 11, -49, 22, 0, 0, 0, 70, 9, 3, -82, 88, -88, 73, 5, -78, 80, -66, 59, 11, -15, 13, -74, 1, -9, 91, -113, 22, 0, 0, 0, 0, 0, 0, 0, 67, -67, 11, 18, -29, 10, 78, -61, -49, 22, 0, 0, 0, 0, 0, 0, 0, 80, 2, -9, 5, 6, -83, 7, -6, 89, 2, -91, 10, -12, 8, 59, -67, 65, 18, -83, 85, -61, -15, -9, 65, 18, -83, 67, 5, -7, 17, -73, 18, -49, 22, 0, 0, 0, 93, -115, 115, -115];
    print!("fn main() {{\n    let p:&[i8] = &{:?};\n", p);
    let mut c = 0;
    for x in p.iter() {
        c += *x;
        print!("{}", (c as u8) as char);
    }
}

C++

Fast Read & Write

char buf[1 << 20], *p1, *p2;
#define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 20, stdin), p1 == p2) ? EOF : *p1++)
inline void read(int &x)
{
    register bool f{true};
    register char ch{getchar()};
    x ^= x;
    while (ch < 48 || ch > 57)
    {
        if (ch == 45)
            f = false;
        ch = getchar();
    }
    while (ch > 47 && ch < 58)
        x = (x << 3) + (x << 1) + (ch ^ 48), ch = getchar();
    x *= (f << 1) - 1;
}
char obuf[1 << 20], *p3 = obuf;
#define putchar(x) (p3 - obuf < 1 << 20) ? (*p3++ = x) : (fwrite(obuf, p3 - obuf, 1, stdout), p3 = obuf, *p3++ = x)
inline void write(register int x)
{
    if (!x)
    {
        putchar(48);
        return;
    }
    static intfast8_t c[20];
    register intfast64_t len{};
    if (x < 0)
        x = -x, putchar(45);
    while (x)
        c[len++] = x % 10 ^ 48, x /= 10;
    while (len--)
        putchar(c[len]);
}
struct _FAST_
{
    ~_FAST_()
    {
        fwrite(obuf, p3 - obuf, 1, stdout);
    }
} _fast_;

Template

#include <bits/extc++.h>
using namespace std;
using namespace __gnu_cxx;
using namespace __gnu_pbds;
typedef short i16;
typedef unsigned short u16;
typedef int i32;
typedef unsigned int u32;
typedef long long i64;
typedef unsigned long long u64;
typedef long isize;
typedef unsigned usize;
typedef float f32;
typedef double f64;
typedef long double f128;
signed main()
{
    return 0;
}

Jiyu Killer & Stop Shutting Down

#include<thread>
#include<stdlib.h>
#include<windows.h>
int main(){
std::thread{[]()->void{while(true)
if(MessageBox(NULL,"杀死极域吗?","G1yu",1)==1)
system("taskkill /im StudentMain.exe /f");
else break;}}.detach();
while(true)system("shutdown -a");}

C

Quine

#include<stdio.h>
char*s="#include<stdio.h>%cchar*s=%c%s%c;main(){printf(s,10,34,s,34);}";main(){printf(s,10,34,s,34);}

Brainfuck

Quine

->+>+++>>+>++>+>+++>>+>++>>>+>+>+>++>+>>>>+++>+>>++>+>+++>>++>++>>+>>+>++>++>+>>>>+++>+>>>>++>++>>>>+>>++>+>+++>>>++>>++++++>>+>>++>+>>>>+++>>+++++>>+>+++>>>++>>++>>+>>++>+>+++>>>++>>+++++++++++++>>+>>++>+>+++>+>+++>>>++>>++++>>+>>++>+>>>>+++>>+++++>>>>++>>>>+>+>++>>+++>+>>>>+++>+>>>>+++>+>>>>+++>>++>++>+>+++>+>++>++>>>>>>++>+>+++>>>>>+++>>>++>+>+++>+>+>++>>>>>>++>>>+>>>++>+>>>>+++>+>>>+>>++>+>++++++++++++++++++>>>>+>+>>>+>>++>+>+++>>>++>>++++++++>>+>>++>+>>>>+++>>++++++>>>+>++>>+++>+>+>++>+>+++>>>>>+++>>>+>+>>++>+>+++>>>++>>++++++++>>+>>++>+>>>>+++>>++++>>+>+++>>>>>>++>+>+++>>+>++>>>>+>+>++>+>>>>+++>>+++>>>+[[->>+<<]<+]+++++[->+++++++++<]>.[+]>>[<<+++++++[->+++++++++<]>-.------------------->-[-<.<+>>]<[+]<+>>>]<<<[-[-[-[>>+<++++++[->+++++<]]>++++++++++++++<]>+++<]++++++[->+++++++<]>+<<<-[->>>++<<<]>[->>.<<]<<]

links

social