請高手幫忙用c語言做酒店管理系統

時間 2021-10-15 00:23:17

1樓:林明爐

////////////////////////////

//hotel manager system

//design by wongswoon

//08.11.9

////////////////////////////

#include

#include

#include

//////////////////////////

struct customercustomer[5][301];

//////////////////////////

struct roomroom[5];

///////////////////////////

void initroom_customer()

}///////////////////////////////////

int isempty(struct customer c)

//////////////////////////////////

void orderroom(char c)

break;

case 'b':

break;

case 'c':

break;

case 'd':

break;}}

//////////////////////////

void findcustomer()

if(flag)

break;

}if(i==0)

printf("this gay is not found!\n");

else

}///////////////////////////////////

struct customer * find_with_roomkey(int n)

if(flag)

break;

}return &customer[i][j];*/

return &customer[n/1000][n%1000];//hash method better!

}//////////////////////////////////

long checkout()

else

printf("the room-%d customer's info\n",find_with_roomkey(n)->roomnum);

printf("%d\t\t%s\t%d\t%d\t%d.%d\n",find_with_roomkey(n)->roomnum,

find_with_roomkey(n)->name,find_with_roomkey(n)->id,find_with_roomkey(n)->tel,

find_with_roomkey(n)->time.tm_mon,find_with_roomkey(n)->time.tm_mday);

sum=room[find_with_roomkey(n)->roomnum/1000].price*(s_m*31+s_d-2);

room[find_with_roomkey(n)->roomnum/1000].remain_num++;

strcpy(find_with_roomkey(n)->name,"null");

find_with_roomkey(n)->id=0;

find_with_roomkey(n)->roomnum=0;

find_with_roomkey(n)->tel=0;

find_with_roomkey(n)->time.tm_mon=1;

find_with_roomkey(n)->time.tm_mday=1;

return sum;

}////////////////////////////////////////////

void evaluate()

///////////////////////////////

void initcmd()

}//////////////////////////////

int main()

2樓:

每一步都要寫清楚原理?

是想拿去交的嗎?

50分?

太少.加分就寫.

3樓:匿名使用者

在這個經濟社會裡誰還會免費的幫人家出這麼大的力啊?你那酒店管理系統要求再簡單也要花時間啊!再說你要它的原理,這不是要人家的智慧財產權嗎?也許人家開發出來把軟體打包給你還有可能。

4樓:斜塘拂柳

希望不大……

估計得花錢買

c語言習題請高手幫忙解答,C語言習題請高手幫忙解答。

1 沒答案,應該是a2,b 5 2 a3 沒答案,因為 u輸出a的值不確定4 a5 c 6 b7 沒答案,應該是scanf f c 8 c9 b 1 沒答案如為printf a d,b d n a,b 選 d a d,b d 2 b3 c 4 c5 c 6 d7 a 我想答案應該是scanf f c...

C語言高手幫幫忙,請C語言版資料結構高手幫幫忙!

御風 弄影 第一題中確實是錯的。因為 指向的變數都賦有初值。而x沒賦初值,用pb指向它時有不可預知的危險 a書影時光 1 這個式子是錯的,應該寫成 pb x。因為第一句是定義語句,而一個語句的結束是以 結束,那 pb x 就不屬於定義語句了,pb在第二個語句的意思是指標變數pb指向的記憶體空間的值,...

c語言出現空指標賦值怎麼回事請高手幫忙看下

是編譯器報的空指標賦值吧?主要原因 作者沒有搞清楚c中的全域性變數和區域性變數的問題。1。zts 35 point1 35 point2 35 x1 35 這四個陣列在main 中有,在四個子函式中有,各是各的,互不干涉,所以main 中的這四個陣列始終沒有被賦值過,空指標指的就是這個吧。2。應該把...