zoukankan      html  css  js  c++  java
  • About me

    【myself】:

    来自山东的一名蒟蒻(OIer) , emmm, 具体会干什么呢。 抄题解,打板子,蒙结论,猜DP,背代码……((so on)请自行列举菜鸟该做的行为) ;


    【我的博客】:

    只有部分涉及版权问题上锁或者没写完或写错误的,就上锁了,也以防误导大家,其余不会上锁,除非私人隐私,


    【我的缺省源】:

    /*
     by : Zmonarch
     知识点 : 
     思路 : 
    */
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    #include <queue>
    #include <stack>
    #include <map> 
    #define int long long
    using namespace std;
    const int maxn = 100 ;
    inline int read()
    {
    	int x = 0 , f = 1 ; char ch = getchar() ;
    	while(!isdigit(ch)){ if(ch == '-') f = - 1 ; ch = getchar() ; }
    	while( isdigit(ch)){ x = x * 10 + ch - '0' ; ch = getchar() ; }
    	return x * f ;
    } 
    signed main()
    {
    	
    	return 0 ;
    }
    

    【我的码风】:

    极其喜欢简洁, 别问,问就是看着爽的,有时次次空格,有时和分子之间一样紧密。


    【我的“来源”】:

    偶然的机会,接触到了 (OI) ,然后阴差阳错得感觉(OI)挺好的, 尽管我很菜,也许可能不适合我,但是我也会一直走下去,自然,打断了双腿就没法走了。


    【其他】:

    安利一下两个学长,Luckyblock(壮壮的),Loceaner(帅帅的),对我帮助也是特别大(巨),可以关注一下他们两个的呀!!!(反正你都看了,关注一下吧,链接放上了)

    (QQ)是 3023227140
    $cell phone $: 13465286716

  • 相关阅读:
    bash编程2
    bash简介1
    grep文本处理工具
    用户的环境变量
    用户,组,权限
    yum与rmp
    逻辑卷管理
    磁盘配额
    磁盘创建
    创建计划任务
  • 原文地址:https://www.cnblogs.com/Zmonarch/p/14072560.html
Copyright © 2011-2022 走看看