实例 C 语言赋值运算符 /=

x
 
#include <stdio.h>
int main() {
  float x = 5;
  x /= 3;
  printf("%f", x);
  return 0;
}
                    

输出结果

1.66667