Remove system("PAUSE")

This commit is contained in:
GuilhermeWerner
2021-01-21 14:25:20 -03:00
parent 8eb59a6523
commit 4a2b267d45
2 changed files with 0 additions and 4 deletions

View File

@ -20,6 +20,4 @@ int main()
printf("\nDivided: %f", Divide(num1, num2));
printf("\n\n");
system("PAUSE");
}

View File

@ -22,6 +22,4 @@ int main()
cout << "Divided: " << Library::Divide(num1, num2) << "\n";
cout << "\n";
system("PAUSE");
}