All submissions
#include <iostream>
using namespace std;

class Sensor {
      int id;
public:

      // your code here: define constructor taking int id and printing "Sensor <id> initialized"
      Sensor(int id)
      {
         std::cout<<"Sensor "<<id<<" initialized"<<std::endl;  
      }
      
};

int main() {
   Sensor s(101);
   return 0;
}
Loading...

Input

Expected Output

Sensor 101 initialized