#include "stdafx.h"
#include <stdlib.h>
#include <time.h>
int main(int argc, char* argv[])
{
 printf("Hello World!\n");
 srand(time(0));
 for (int i=0;i<10;i++)
 {
  printf("%x ",(int)rand()%1000);
 }
 printf("\n");
 for (int j=0;j<10;j++)
 {
  printf("%x ",(int)rand()%1000);
 }
 return 0;
}

相关文章:

  • 2022-12-23
  • 2021-12-09
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-11
  • 2021-08-05
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-23
  • 2021-08-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案