Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions decToBin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ void Converter::convertDecimalToBinary(float inputNumber){
}

int main(int argc, char const *argv[]){
system("cls");
//Clear Screen with system("cls")
system("cls"); //Clear Screen with system("cls")
Converter object;
float number;
cout << "\t\t******* CONVERTER ********\n\n";
Expand All @@ -87,4 +86,4 @@ int main(int argc, char const *argv[]){
cout<<"\tYou have entered "<<number<<"\n\n";
object.convertDecimalToBinary(number);
return 0;
}
}