fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x;
  5. scanf("%d",&x);
  6. x = x^3;
  7. printf("3乗は%dです\n", x);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5320KB
stdin
15
stdout
3乗は12です