⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addlist.c

📁 c语言开发方面的经典问题,包括源代码.c语言开发所要注意的问题,以及在嵌入式等各方面的应用
💻 C
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -