91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

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

資源簡(jiǎn)介

:基于C 和C語(yǔ)言實(shí)現(xiàn)的俄羅斯方塊游戲,沒(méi)有很復(fù)雜的頭文件和特殊的插件很適合初學(xué)者練習(xí)。

資源截圖

代碼片段和文件信息

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

評(píng)論

共有 條評(píng)論