fork download
  1. #include <time.h>
  2.  
  3. int numero_10a15_e_20a25() {
  4. srand(time(NULL));
  5. int x = rand() % 12;
  6. return x + (x < 6 ? 10 : 14);
  7. }
  8.  
  9. int main(void) {
  10. printf("%d", numero_10a15_e_20a25());
  11. }
Success #stdin #stdout 0s 4276KB
stdin
Standard input is empty
stdout
24