This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <cstring> | |
#include <fstream> | |
#include <iostream> | |
#include <iomanip> | |
#include <string> | |
std::string toLongRoman(int value); | |
std::string toLower(std::string intputString); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <cstring> | |
#include <fstream> | |
#include <iostream> | |
#include <iomanip> | |
#include <string> | |
std::string toLongRoman(int value); | |
std::string toLower(std::string intputString); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <string> | |
#include <fstream> | |
#include <iomanip> | |
using namespace std; | |
const double taxRate = .085; | |
int main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include <iomanip> | |
using namespace std; | |
int main() | |
{ |