joke-weather-app/WeatherReport.h
Keyemail a2216dbcdc yes
2023-07-14 02:06:16 -07:00

27 lines
768 B
C++
Executable file

#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
*/