• 大小: 15KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-09
  • 语言: C/C++
  • 标签: c语言  

资源简介

使用c语言写的自动贩卖机程序,有自动找零功能和良好的交互,供参考

资源截图

代码片段和文件信息

/******************************************************************************
** Student name:  ...
** Student number:  ...
** Course:  Advanced Programming Techniques - S1 2018
******************************************************************************/

#include “utility.h“

/**
 * Function required to be used when clearing the buffer. It simply reads
 * each char from the buffer until the buffer is empty again. Please refer
 * to the materials on string and buffer handling in the course for more
 * information.
 **/
void readRestOfLine()
{
    int ch;
    while(ch = getc(stdin) ch != EOF && ch != ‘\n‘)
    { } /* Gobble each character. */

    /* Reset the error status of the stream. */
    clearerr(stdin);
}

Boolean mygets(char *s unsigned len FILE *in )
{
int ch;
int i = 0;
while (ch = getc(in) ch != EOF && ch != ‘\n‘ && i s[i++] = ch;
s[i] = ‘\0‘;
if (i==0)
return FALSE;
return TRUE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件          56  2018-05-10 17:29  coins.dat
     文件         328  2018-02-18 17:54  Makefile
     文件         271  2018-05-11 09:25  readme.txt
     文件        5648  2018-05-11 09:15  Requirement13Part1.txt.txt
     文件        6005  2018-05-11 09:23  Requirement13Part2.txt.txt
     文件         442  2018-05-10 17:29  stock.dat
     文件         933  2018-05-10 17:03  utility.c
     文件         887  2018-05-10 17:32  utility.h
     文件         750  2018-05-11 08:59  vm.c
     文件         318  2018-05-09 19:46  vm.h
     文件        1816  2018-05-10 18:57  vm_coin.c
     文件         709  2018-05-10 16:49  vm_coin.h
     文件        1984  2018-05-11 09:05  vm_menu.c
     文件         857  2018-02-18 17:54  vm_menu.h
     文件       11341  2018-05-11 09:15  vm_options.c
     文件        1038  2018-05-10 18:35  vm_options.h
     文件        1804  2018-05-11 08:44  vm_stock.c
     文件         626  2018-05-09 18:12  vm_stock.h
     文件        2550  2018-02-18 17:54  vm_system.h

评论

共有 条评论