P201821440002

#include <stdio.h>

#include <math.h>

#include <time.h>

#include <stdlib.h>

#include <windows.h>

int math (){

int i;

char c,gu;

srand((unsigned)time(NULL));

c=6;

gu=rand()%31+1;

if(c>=7&&c<=1) c=17;

if(i%9==0)printf("%d.%c\t",i,gu);

else printf("%d.%c\t",i,c);

if(i%5==0)

printf("\n");

}

getchar();

printf("the icon you guess is:\n");

for(i=1;i<=10;i++)

  printf("%c",gu);

printf("\n");

}

分类:

技术点:

相关文章:

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