fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void)
  4. {
  5. int W;
  6. scanf("%d",&W);
  7.  
  8. W>90 ? (printf("體重過重")) : (printf("無過重"));
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5284KB
stdin
91
stdout
體重過重