xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 0.02M
    文件類型: .cpp
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-02-01
  • 語言: C/C++
  • 標簽:

資源簡介

:基于C 和C語言實現(xiàn)的俄羅斯方塊游戲,沒有很復雜的頭文件和特殊的插件很適合初學者練習。

資源截圖

代碼片段和文件信息

#include?
#include?
#include?
#include?
#include?
#include?
?
#ifdef?_MSC_VER?//?M$的編譯器要給予特殊照顧
??#if?_MSC_VER?<=?1200?//?VC6及以下版本
????#error?你是不是還在用VC6?!
??#else?//?VC6以上版本
????#if?_MSC_VER?>=?1600?//?據(jù)說VC10及以上版本有stdint.h了
??????#include?
????#else?//?VC10以下版本,自己定義int8_t和uint16_t
??????typedef?signed?char?int8_t;
??????typedef?unsigned?short?uint16_t;
????#endif
????#ifndef?__cplusplus?//?據(jù)說VC都沒有stdbool.h,不用C++編譯,自己定義bool
??????typedef?int?bool;
??????#define?true?1
??????#define?false?0
????#endif
??#endif
#else?//?其他的編譯器都好說
??#include?
??#ifndef?__cplusplus?//?不用C++編譯,需要stdbool.h里的bool
????#include?
??#endif
#endif
?
//?====================================================

評論

共有 條評論