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

📄 prog20_08.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Program 20.8 Averaging values from Integer  File: prog20_08.cpp
#include <iostream>
#include "Integer.h"
using std::cout;
using std::endl;

template <typename Iter> 
double average(Iter a, Iter end) { 
  double sum = 0.0;
  int count = 0;  
  for( ; a != end ; ++count)
    sum += *a++;
  return sum/count;             // Lets bad things happen when count==0
} 

int main() {
  Integer first(1);
  Integer last(11);
  cout << "The average of the integers from " << *first << " to " << *last-1;
  cout << " is " << average(first, last) << endl;
  return 0;
}

⌨️ 快捷键说明

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