27 lines
768 B
C
27 lines
768 B
C
|
#ifndef _weatherReport_h
|
||
|
#define _weatherReport_h
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
//void weatherReport(std::string weatherLocationInput);
|
||
|
|
||
|
void findWeatherReport(std::string continent, std::string country);
|
||
|
|
||
|
std::string continents(int responseNumberInput);
|
||
|
|
||
|
std::string asia(int responseNumberInput);
|
||
|
std::string africa(int responseNumberInput);
|
||
|
std::string northAmerica(int responseNumberInput);
|
||
|
std::string southAmerica(int responseNumberInput);
|
||
|
std::string europe(int responseNumberInput);
|
||
|
std::string australia(int responseNumberInput);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
/*
|
||
|
* THIS CODE WAS DESIGNED ENTIRELY BY HATSUNE PATRICK, 初音パトリック.
|
||
|
* LEARNING BOOK IS PROGRAMING ABSTRACTIONS IN C++.
|
||
|
* FILE CONTAINS CHAPTER 2 LEARNING BLOCKS.
|
||
|
* i need to find something better to fucking do
|
||
|
*/
|