100 doors | Rosetta Code | #1

URL to the problem page: https://rosettacode.org/wiki/100_doors


There are 100 doors in a row that are all initially closed.
You make 100 passes by the doors.
The first time through, visit every door and toggle the door (if the door is closed, open it; if it is open, close it).
The second time, only visit every 2nd door (door #2, #4, #6, ...), and toggle it.
The third time, visit every 3rd door (door #3, #6, #9, ...), etc, until you only visit the 100th door.

Answer the question: what state are the doors in after the last pass? Which are open, which are closed?



#include <iostream>
using namespace std;

int main()
{
    int doors[101] = { 0 };
    for (int i = 1; i < 101; i++) {
        for (int j = i; j < 101; j += i) {
            doors[j] = (doors[j] == 0) ? 1 : 0;
        }
    }
    for (int i = 1; i < 101; i++) {
        if (doors[i] == 1) {
            cout << i << ". door is open." << endl;
        }
    }
    return 0;
}



CLICK TO SEE THE OUTPUT.

Comments

My photo
Ercan Tomac
instagram.com/ercantomac