C语言一个小程序

C语言一个小程序,第1张

//---------------------------------------------------------------------------

#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”。这样用户在搜索推起来的时候,也可能会搜到你。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11304971.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存