fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int vx,vy;
  5. printf("整数vx:");scanf("%d",&vx);
  6. printf("整数vy:");scanf("%d",&vy);
  7.  
  8. printf("vx+vy=%d\n",vx+vy);
  9. printf("vx-vy=%d\n",vx-vy);
  10. printf("vx*vy=%d\n",vx*vy);
  11. printf("vx/vy=%d\n",vx/vy);
  12. printf("vx%%vy=%d\n",vx%vy);
  13. return 0;
  14. }
Runtime error #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
Standard output is empty