home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / PLOTEMP2.C < prev    next >
C/C++ Source or Header  |  1992-02-18  |  2KB  |  103 lines

  1. // Borland C++ - (C) Copyright 1991 by Borland International
  2.  
  3. /* PLOTEMP2.C--Example from Getting Started */
  4.  
  5. /* This program creates a table and a bar chart plot from a
  6.    set of temperature readings */
  7.  
  8. #include <conio.h>
  9. #include <ctype.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12.  
  13. /* Prototypes */
  14.  
  15. void get_temps(void);
  16. void table_view(void);
  17. void min_max(void);
  18. void avg_temp(void);
  19. void graph_view(void);
  20. void save_temps(void);
  21. void read_temps(void);
  22.  
  23. /* Global defines */
  24.  
  25. #define TRUE      1
  26. #define READINGS  8
  27.  
  28. /* Global data structures */
  29.  
  30. int temps[READINGS];
  31. int main(void)
  32. {
  33.    while (TRUE)
  34.    {
  35.       printf("\nTemperature Plotting Program Menu\n");
  36.       printf("\tE - Enter temperatures for scratchpad\n");
  37.       printf("\tS - Store scratchpad to disk\n");
  38.       printf("\tR - Read disk file to scratchpad\n");
  39.       printf("\tT - Table view of current data\n");
  40.       printf("\tG - Graph view of current data\n");
  41.       printf("\tX - Exit the program\n");
  42.       printf("\nPress one of the above keys: ");
  43.  
  44.       switch (toupper(getche()))
  45.       {
  46.      case 'E': get_temps();  break;
  47.      case 'S': save_temps(); break;
  48.      case 'R': read_temps(); break;
  49.      case 'T': table_view(); break;
  50.      case 'G': graph_view(); break;
  51.      case 'X': exit(0);
  52.       }
  53.    }
  54. }
  55.  
  56. /* Function definitions */
  57. void get_temps(void)
  58. {
  59.    char inbuf[130];
  60.    int  reading;
  61.  
  62.    printf("\nEnter temperatures, one at a time.\n");
  63.    for (reading = 0; reading < READINGS; reading++)
  64.    {
  65.       printf("\nEnter reading # %d: ", reading + 1);
  66.       gets(inbuf);
  67.       sscanf(inbuf, "%d", temps[reading]);
  68.  
  69.       /* Show what was read */
  70.       printf("\nRead temps[%d] = %d", reading, temps[reading]);
  71.    }
  72. }
  73.  
  74. void table_view(void)
  75. {
  76.    printf("\nExecuting table_view().\n");
  77. }
  78.  
  79. void min_max(void)
  80. {
  81.    printf("\nExecuting min_max().\n");
  82. }
  83.  
  84. void avg_temp(void)
  85. {
  86.    printf("\nExecuting avg_temp().\n");
  87. }
  88.  
  89. void graph_view(void)
  90. {
  91.    printf("\nExecuting graph_view().\n");
  92. }
  93.  
  94. void save_temps(void)
  95. {
  96.    printf("\nExecuting save_temps().\n");
  97. }
  98.  
  99. void read_temps(void)
  100. {
  101.    printf("\nExecuting read_temps().\n");
  102. }
  103.