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

📄 weatherprediction.cpp

📁 C++高级编程这本书所附的源代码
💻 CPP
字号:
#include <iostream>

#include "WeatherPrediction.h"

using namespace std;

void WeatherPrediction::setCurrentTempFahrenheit(int inTemp)
{
  mCurrentTempFahrenheit = inTemp;
}

void WeatherPrediction::setPositionOfJupiter(int inDistanceFromMars)
{
  mDistanceFromMars = inDistanceFromMars;
}

int WeatherPrediction::getTomorrowTempFahrenheit()
{
  // Obviously, this is nonsense
  return (mDistanceFromMars / 1000) + mCurrentTempFahrenheit;
}

double WeatherPrediction::getChanceOfRain()
{
  // Obviously, this is nonsense too
  return 0.5;
}

void WeatherPrediction::showResult()
{
  cout << "Result: " << (getChanceOfRain() * 100) << " chance."
       << " Temp. " << getTomorrowTempFahrenheit() << endl;
}


/*
int main()
{
  WeatherPrediction p;
  p.setCurrentTempFahrenheit(24);
  p.setPositionOfJupiter(80);
  p.showResult();
}
*/

⌨️ 快捷键说明

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