addlist.c
来自「The art and science of c_source code!」· C语言 代码 · 共 31 行
C
31 行
/* * File: addlist.c * --------------- * This program adds a list of numbers. The end of the * input is indicated by entering 0 as a sentinel value. * This version of the implementation uses a while loop * without a break statement, which forces some duplication * of code. */#include <stdio.h>#include "genlib.h"#include "simpio.h"main(){ int value, total; printf("This program adds a list of numbers.\n"); printf("Signal end of list with a 0.\n"); total = 0; printf(" ? "); value = GetInteger(); while (value != 0) { total += value; printf(" ? "); value = GetInteger(); } printf("The total is %d\n", total);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?