fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x;
  5. scanf("%d",&x);
  6. printf("%dの3乗は%dです。\n",x,x*x*x);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0.01s 5288KB
stdin
9
stdout
9の3乗は729です。