addlist.c

来自「The art and science of c_source code!」· C语言 代码 · 共 29 行

C
29
字号
/* * File: addlist.c * --------------- * This program adds a list of numbers.  The end of the input * is indicated by entering a blank line as a sentinel value. */#include <stdio.h>#include "genlib.h"#include "simpio.h"#include "strlib.h"main(){    int total;    string line;    printf("This program adds a list of numbers.\n");    printf("Signal end of list with a blank line.\n");    total = 0;    while (TRUE) {        printf(" ? ");        line = GetLine();        if (StringEqual(line, "")) break;        total += StringToInteger(line);    }    printf("The total is %d\n", total);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?