All submissions
#include <iostream>
using namespace std;

class Sensor {
public:
      int read(void)
      {      
            return 100;
      }
   // your code here: implement int read() to return 100
};

int main() {
   Sensor s;
   cout << "Sensor reading: " << s.read();
   return 0;
}
Loading...

Input

Expected Output

Sensor reading: 100