猜数字

#include <stdio.h>
#include <time.h>
int main (void)
{     int num,answer,count=0;
     srand(time(NULL));      
      answer = rand()%100+900;
    while (1){
        printf("请输入您的数字:\n");
        scanf("%d",&num);
        if(num==answer){
            printf("恭喜你!猜对啦!!\n");
            break;
        }
                
        else {
         if(num<answer){
                printf("您的数字小了,、请继续" );}
                else{
                printf("您的数字大了,。请继续");
                           }
                       }        
    }  
getch ();
return 0;
}

上一篇:delete attempted to return null from a method with a primitive return type (int)


下一篇:.NET 云原生架构师训练营(模块二 基础巩固 依赖注入)--学习笔记