home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / curses_391.lzh / Curses / examples / bio / instructions.c < prev    next >
C/C++ Source or Header  |  1990-10-27  |  2KB  |  43 lines

  1. #include <curses.h>
  2.  
  3. instructions ()
  4. {
  5.     erase ();
  6.     printw ("    The BIORHYTHM theory postulates that");
  7.     printw (" there are certain\nmetabolic rhythms that");
  8.     printw (" have a constant cycle time in");
  9.     printw (" the human\nbody,and are known as inner clocks.\n");
  10.     printw ("    Two phyicians, one a contemporary of ");
  11.     printw ("Freud, concurrently\ndescribed a 23-day cycle that");
  12.     printw (" correlated with physical\nvitality, endurance");
  13.     printw (" and energy; and a 28-day cycle that\n");
  14.     printw ("corresponds to sesitivity, intuition, and ");
  15.     printw ("cheerfulness. A\nthird cycle was observed by");
  16.     printw (" a professor and others in the\n1920s and 1930s");
  17.     printw (" and is a 33-day cognetive or intellectual\n");
  18.     printw ("cycle that relates to mental alertness and ");
  19.     printw ("judgment.\n    All three cycles start up");
  20.     printw (" from birth or the beginning of\nindependant");
  21.     printw (" life.\nThe days on which the median (0) line");
  22.     printw (" is crossed are\ncalled critical days,");
  23.     printw (" especially for the physical and\nsensitivity");
  24.     printw (" cycles and are when accidents are the most");
  25.     printw (" likely\nto occur. The HIGH (+) periods in");
  26.     printw (" the various cycles are the\ntimes when you");
  27.     printw (" should have most energy, be most cheerful,\n");
  28.     printw ("outgoing and mentally alert. The LOW (-) times");
  29.     printw (" are regarded\nas recuperative periods.\n");
  30.     printw ("        -   Median Line        (0 - line)\n");
  31.     printw ("        P   Physical Cycle    (23 - day)\n");
  32.     printw ("        S   Sensitivity Cycle    (28 - day)\n");
  33.     printw ("        I   Intellectual Cycle  (33 - day)\n");
  34.     noecho ();
  35.     attrset (A_REVERSE);
  36.     move (23, 25);
  37.     printw ("PRESS ANY KEY TO BEGIN");
  38.     attrset (0);
  39.     refresh ();
  40.     getch ();
  41.     echo ();
  42. }
  43.