#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <time.h>
#define SP 32
#define ESC 27
int main(void)
{
int a,b,fg
char ch
srand(time(NULL))
do
{
a=rand()%9000+1000
b=rand()%9000+1000
fg=0
printf("%d+%d=",a,b)
while (fg<3)
{
ch=getch()
if (ch==SP&&!fg) {
printf("%d\n",a+b)
fg=1
}
else if (ch==SP&&fg==1) {
system("cls")
break
}
else if (ch==ESC) {
break
}
}
}while (ch!=ESC)
return 0
}
//---------------------------------------------------------------------------
相当于小程序名称的尾巴,因为小程序的名称一旦被占用了,就无法再使用,所以有些商家在名称被别人占用的情况下,会在名称末尾加lite、pro、mini等,比如“推起来”这个名称已经被人注册了,你就只能注册“推起来mini”。这样用户在搜索推起来的时候,也可能会搜到你。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)