简体   繁体   中英

system(“pause”) not working, can anyone see what I'm missing?

My program has errors and wont let me compile. The only errors start at system("pause) though but I dont see why I'm having errors because I did it the same as I always do my programs. Can anyone see what might be the issue? heres the code:

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{ 
 //Declarations
     int SIZE = 10;
     int NUMBERS[10];
     int i;
     int j;
     int temp;
 for (int i = 0; i < SIZE; i++)
 {
     cout << "Please enter a number: " << endl;
     cin >> NUMBERS[i];
 }
 for (int i = 0; i < SIZE; i++)
 {
     for (int j = 0; j < SIZE; j++)
     {
         if (NUMBERS[j] > NUMBERS[j+1])
         {
           temp = NUMBERS[j];
           NUMBERS[j] = NUMBERS[j+1];             
           NUMBERS[j+1] = temp;
         }
     }
 }
 cout << "Sorted List" << endl;
 cout << "===========" << endl;
 for (int i = 0; i < SIZE; i++)
     cout << "Number " << i + 1 << ": " << NUMBERS[i] << endl;
 }

   system("pause");
   return 0;
 }
 for (int i = 0; i < SIZE; i++) {
                             // ^^^ add this missing bracket
     cout << "Number " << i + 1 << ": " << NUMBERS[i] << endl;
 }
^^^  // closing bracket, but has no opening match

Of course you can skip braces in this case ( as there is only one single line in for body) so this is also solution:

 for (int i = 0; i < SIZE; i++)
     cout << "Number " << i + 1 << ": " << NUMBERS[i] << endl;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM