נשלח בתאריך: 21 June 2009 בשעה 12:06 | | IP רשוּם
|
|
|
|
עליך להגדיר מבנה Library ובו את השדות הבאים:
- שם ספרייה
- כתובת ספריה
- מספר ספרים
- מספר קוראים
- נכס (כמה כסף עולים כל ספרים)
כתוב תוכנית ובה 2 פונקציות: ראשונה שקולטת את שדות המבנה
מהמקלדת והשנייה שמחשבת כמה עולה כל ספר בממוצע.
בפונקציה הראשית יש לקרוא לפונקציות אלה.
קוד:
#include <stdio.h> #include <string.h>
typedef char string [100] ; typedef struct { string libary; string addr; int num_book; int num_read; float nacash; } libary;
void getinput(); void avgbook() ;
void main () { getinput (); avgbook(); } libary lib ; //*define Value lib type*//
void getinput() { printf("enter libary name \n"); scanf("%s",lib.libary); printf("enter libary addr\n"); scanf("%s",lib.addr); printf("enter number of book \n"); scanf("%d",lib.num_book); printf("Enter number of reader \n"); scanf("%d",lib.num_read); printf("Enter number of book cost\n"); scanf("%f",lib.nacash); } void avgbook ()
{ printf("Cost of Avg book is = %f",lib.nacash/lib.num_book);
} |
|
|
|