Skip to content

Instantly share code, notes, and snippets.

View ebba0194's full-sized avatar

Bree Therkildsen ebba0194

  • Ambaum Labs
  • Seattle, WA
View GitHub Profile
#include <iostream>
#include <string>
using namespace std;
string province(string);
int main(){
string city, abbrev, prov;
cout<<"Enter city: ";
#include <iostream>
using namespace std;
struct Time{
int hour, min, sec;
} times[3];
int add (Time times[3]);
int main(){