Skip to content

Instantly share code, notes, and snippets.

View EitherRock's full-sized avatar
🏠
Working from home

Nathan Lesmann EitherRock

🏠
Working from home
  • Arkansas
View GitHub Profile
#include "pch.h"
#include <cstring>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <string>
std::string toLongRoman(int value);
std::string toLower(std::string intputString);
#include "pch.h"
#include <cstring>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <string>
std::string toLongRoman(int value);
std::string toLower(std::string intputString);
@EitherRock
EitherRock / gist:6dfef36c561b27680a490ea88ff12ac7
Created September 26, 2018 00:42
Tax isnt coming out right.
#include "pch.h"
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
using namespace std;
const double taxRate = .085;
int main()
#include "pch.h"
#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
using namespace std;
int main()
{