2015 ソフトウェア設計及び演習用の班Wiki

15::gr07::図鑑モジュール_ヘッダファイル

※変更する可能性あり

zukann.h

//#pragma once
#include <stdio.h>
#include <stdlib.h>
int count_food=0;
int count_cookstuff=0;
int foodstuff[4]={0,0,0,0};
int cookstuff[10] = {0,0,0,0,0,0,0,0,0,0};
int count = 0;
int cook (int );
int cook_sum(int *);
int food_buta();
int food_tohu();
int food_toubann();
int food_komugiko();
int food_kai();
int food_milk();
int food_bata();
int food_imo();
int food_kon();
int food_ninnzinn();
int food_egg();
int food_rice();
int food_tori();
int food_ruu();
int food_maguro();
int food_retasu();
int food_tako();
int food_nasi();
//下記は食材の種類、料理の種類である。
int Foodstuff[17][2] ={{111/*豚肉*/,0},
{213/*豆腐*/,0},
{325/*豆板醤*/,0},
{427/*小麦粉*/,0},
{338/*貝*/,0},
{411/*牛乳*/,0},
{513/*バター*/,0},
{515/*芋*/,0},
{616/*こんにゃく*/,0},
{719/*人参*/,0},
{821/*卵*/,0},
{823/*ご飯*/,0},
{425/*鶏肉*/,0},
{627/*カレー等のルー*/,0},
{729/*マグロ*/,0},
{331/*レタス*/,0},
{533/*タコ*/,0}};
int Hot_and_sour_soup[1][2] = {649,0}; //麻婆豆腐
int Vongole_pasta[1][2] = {1689,0}; //ボンゴレパスタ
int Meat_and_potatoes[1][2] = {1961,0}; //肉じゃが
int Bowl_of_rice_topped_with_chicken_and_eggs[1][2] = {2069,0}; //親子丼
int Bread[1][2] = {2172,0}; //パン
int Curry[1][2] = {2076,0}; //カレー
int Bowl_of_rice_topped_with_sashimi[1][2] = {1890,0}; //海鮮丼
int Hoikoro[1][2] = {767,0}; //回鍋肉
int Takoyaki[1][2] = {1781,0}; //たこやき
int Legend_food[1][2] = {2186,0};//伝説の料理
int cook_stuff[10][2] = {{649,0},
{1689,0},
{1961,0},
{2069,0},
{2172,0},
{2076,0},
{1890,0},
{767,0},
{1781,0},
{2186,0}};


最終更新日:2015/07/24 12:09:22