fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. typedef struct {
  6. char na[64];
  7. int stts[6];
  8. } Monster;
  9.  
  10. Monster creMonster(){
  11. int i,k;
  12. Monster tmp;
  13. k = rand()%8+4;
  14. int a = 'a' + rand()%26;
  15. for(i=0;i<k;i++) tmp.na[i] = 'a' + rand()%26;
  16. tmp.na[k] = '\0';
  17. for(i=0;i<6;i++) tmp.stts[i] = rand()%255+1;
  18. return tmp;
  19. }
  20.  
  21. void priMonster(Monster m){
  22. printf("%12s : ",m.na);
  23. for(int i=0;i<6;i++)
  24. printf("%3d ",m.stts[i]);
  25. printf("\n");
  26. }
  27.  
  28. int main(){
  29. srand((unsigned)time(NULL));
  30. int i, n;
  31. Monster *monsters;
  32. scanf("%d",&n);
  33. monsters=(Monster*)malloc(sizeof(Monster)*n);
  34.  
  35.  
  36. if(monsters == NULL){
  37. printf("ERROR\n");
  38. return 0;
  39. }
  40. for(i=0;i<n;i++){
  41. monsters[i] = creMonster();
  42. printf("%03d ",i+1);
  43. priMonster(monsters[i]);
  44. }
  45. free(monsters);
  46. return 0;
  47. }
  48.  
Success #stdin #stdout 0s 5436KB
stdin
6
stdout
001     yzjmrxcri  :  14 181 100  19 196 186 
002       etboxhq  : 183 175  89  96  28 245 
003   cdlvanplbgp  : 133 117 154  20 231  50 
004      qlogqvcg  : 244  15  65 148  39 228 
005        fttqvb  : 127 195  54 152  86  29 
006    nqlbwbwaks  : 149 125  48  59 224  22