top of page

Number Of Open Doors



#include <stdio.h>

#include <stdbool.h>


#define N 100


int main() {

bool doors[N] = {false};

int i, j;


for (i = 1; i <= N; i++) {

for (j = i - 1; j < N; j += i) {

doors[j] = !doors[j];

}

}


printf("Doors that are open:\n");

for (i = 0; i < N; i++) {

if (doors[i]) {

printf("%d = close \n", i + 1);

}

}


return 0;

}

Recent Posts

See All
Stack Using Queue

A stack can be implemented using two queues in C. The basic idea is to use one queue for enqueue operations and another for dequeue...

 
 
 
Queue Using Stack

A queue can be implemented using two stacks in C. The basic idea is to use one stack for enqueue operations and another for dequeue...

 
 
 
Queue Using Array

#include <stdio.h> #include<stdlib.h> #include<math.h> #define size 5 int queue[size]; int front = -1; int rear = -1; void enque(void);...

 
 
 

Comments


bottom of page