User profile: Danielsson

User info
User name:Danielsson
History
Joined:
Number of posts:78
Latest posts:

Roman Numeral Converter
Your 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 properly
There shouldn't be any return statements in the body of the function. EDIT: Technically they can ...

Getline
You 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]