#include <stdio.h>
#include 
<stdlib.h> 
#include 
<time.h> 

void main()

    srand((unsigned)time(NULL)); 
    
for(int i = 0; i < 10;i++ ) 
        printf( 
"%d\n", rand() % 2); 

相关文章:

  • 2022-01-11
  • 2022-12-23
  • 2021-09-02
  • 2022-12-23
  • 2022-12-23
  • 2021-09-18
  • 2021-08-23
猜你喜欢
  • 2021-11-19
  • 2022-12-23
  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2021-06-22
相关资源
相似解决方案