Roman Numeral ConverterYour approach is unnecessarily complicated. There's no reason to use do .. while loop or subtracting...
Quick question about using float...If the input values (temperatures) are supposed to be of type [b]int[/b] and the results of type [b]...
ready function but not woking properlyThere shouldn't be any return statements in the body of the function. EDIT: Technically they can ...
GetlineYou should add [code]cin.ignore();[/code] between lines 21 a 22. It'll discard any characters from t...
How can I return a character string? To use it in main.[code]#include <string> int main() { std::string MyString; MyString = "SomeText"; }[/code]