其他分享
首页 > 其他分享> > 2021-10-29

2021-10-29

作者:互联网

                 “21天好习惯”第一期-7

今天学了一个猜数游戏的小程序,其中就用到了rand()生成随机数的作用。下面是程序的具体情况:

#include<stdio.h>
#include<math.h>
int main()
{
    int a,b,c,d;
    printf("boys,please enter your lovely number a,c\n");
    scanf("%d%d",&a,&b);
    c=sqrt(a*b+a)+a-b;
    d=rand()%100;
    if(c>d)
    {
        printf("hi,boys");
        printf("you guess the number c is not right");
    }
    else if(c<d)
    {
        printf("hi,boys");
        printf("you guess the number c is not right");
    }
    else
    {
        printf("hi,boys");
        printf("you guess the number c is right");
    }
    return 0;
}
 

运行结果:

 

标签:10,guess,right,number,29,boys,hi,2021,printf
来源: https://blog.csdn.net/m0_63251282/article/details/121043410