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

📄 prog5_02.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Program 5.2 Using a do-while loop to control input
#include <iostream>
using std::cin;
using std::cout;
using std::endl;

int main() {
  char ch = 0;                                // Stores response to prompt for input
  int count = 0;                              // Counts the number of input values
  double temperature = 0.0;                   // Stores an input value
  double average = 0.0;                       // Stores the total and average

  cout << endl;

  do {
    cout << "Enter a temperature reading: ";  // Prompt for input
    cin >> temperature;                       // Read input value

    average += temperature;                   // Accumulate total of values
    count++;                                  // Increment value count

    cout << "Do you want to enter another? (y/n): ";
    cin >> ch;                                // Get response
    cout << endl;
  } while(ch == 'y');

  /**********************************************
     You could replace the loop condition with: 

   } while(ch == 'y' || ch == 'Y');

  This will now accept a 'yes input in either 
  upper or lower case.

  If you add an #include directive for the 
  cctype header, you could also write the loop
  condition as: 

   } while(std::tolower(ch) == 'y');

  **********************************************/

   
  average /= count;                           // Calculate the average
  cout << "The average temperature is " << average
       << endl;
  return 0;
}

⌨️ 快捷键说明

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