fork download
  1. #include <stdio.h>
  2. #include <math.h> // 数学関数
  3. int main(void)
  4. {
  5. int a;
  6. a=28;
  7. if(a<=30){
  8. printf("赤点!\n");
  9. }
  10. return(0);
  11. }
  12.  
  13.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
赤点!