贪吃蛇游戏的C语言编程
#include #include #include #include #include using namespace std;#ifndef SNAKE_H#define SNAKE_Hclass Cmpfriend class Csnake;int rSign; //横坐标int lSign; //竖坐标// friend bool isDead(const Cmp& cmp);Cmp(int r,int l){setPoint(r,l);}voID setPoint(int r,int l){rSign=r;lSign=l;}Cmp operator-(const Cmp &m)constreturn Cmp(rSign-m.rSign,lSign-m.lSign);Cmp operator+(const Cmp &m)constreturn Cmp(rSign+m.rSign,lSign+m.lSign);const int maxSize = 5; //初始蛇身长度class CsnakeCmp firstSign; //蛇头坐标Cmp secondSign;//蛇颈坐标Cmp lastSign; //蛇尾坐标Cmp nextSign; //预备蛇头int row; //列数int line; //行数int count; //蛇身长度vector
用vb编程计算食物中的热量
每个食物的热量不同,需要先输入1g食物的热量。
然后相乘就OK了。
牛肉/g=100
10g牛肉*100=得出总热量!!!
本回答由网友推荐