main.cpp 106 B

12345678
  1. #include "mbed.h"
  2. volatile float w, x, y, z;
  3. int main() {
  4. while (1) {
  5. z = x * y / w;
  6. }
  7. }