Skip to main content
Code Review

Return to Revisions

3 of 3
replaced http://stackoverflow.com/ with https://stackoverflow.com/
  • Try not to use using namespace std.

  • iostream is a system header, so it should be surrounded by angle brackets as such:

     #include <iostream>
    

    Quotes are only used for user headers.

  • system("PAUSE") isn't very good to use for a number of reasons, mostly relating to performance and portability.

    Here's one alternative that avoids these problems:

     std::cin.get();
    

    It'll ask for a character input (with Enter) instead of any key by itself, however.

Jamal
  • 35.2k
  • 13
  • 134
  • 238
default

AltStyle によって変換されたページ (->オリジナル) /