2015 ソフトウェア設計及び演習用の班Wiki
gr11::問題画面
#ifndef QUESTION_H #define QUESTION_H #include <gtk/gtk.h> #include <glib.h> #include <stdlib.h> typedef struct question { char kamoku[15];// 科目の画像の名前 char mondaibun[20];// 問題文の画像の名前 char choices4[4][25]; // 選択肢x4 char choices2[2][25]; // 選択肢x2 アイテム使用時 int answer4; // 正解答(4択時) int answer2; // 正解答(2択時) }QUESTION; void make_question(); // 問題を作る QUESTION load_question(int); //引き数:問題番号 0~69 QUESTION load_question1(int ); //一般 0~26 QUESTION load_question0(int ); //専門 0~42 #endif
最終更新日:2015/07/17 12:39:24