fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main() {
  6.  
  7. srand(time(NULL));
  8.  
  9. for (int i = 0; i < 3; i++) {
  10. int randomNumber = rand() % 10 + 1;
  11. printf("評価は左から: %d\n", randomNumber);
  12. }
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
評価は左から: 9
評価は左から: 6
評価は左から: 7