joke-weather-app/WeatherReport.h

27 lines
768 B
C
Raw Normal View History

2023-07-14 09:06:16 +00:00
#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
*/