fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x;
  5.  
  6. scanf("%d",&x);
  7. printf("整数xの4乗は%d*%d*%d*%d=%dです\n",x,x,x,x,x*x*x*x);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
整数xの4乗は32766*32766*32766*32766=-1048560です