fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int box;
  6.  
  7. puts("整数を入力してください:");
  8. scanf("%d", &box);
  9.  
  10. printf("その数の5倍は%dです。\n", 5 * box);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5276KB
stdin
7
stdout
整数を入力してください:
その数の5倍は35です。