使用if ... else语句猜一个随机数

#include stdio.h#include stdlib.hint main(void){int magic; /* magic number */int guess; /* users guess */

编程学习网为您整理以下代码实例,主要实现:使用if ... else语句猜一个随机数,希望可以帮到各位朋友。

@H_404_1@#include <stdio.h>

#include <stdlib.h>
int main(voID)
{
   int magic; /* magic number */
   int guess; /* user's guess */

   magic = rand(); /* generate the magic number */

   printf("Guess the magic number: ");
   scanf("%d", &guess);

   if (guess == magic) printf("** Right **");
   else printf("Wrong");

   return 0;
}

本文标题为:使用if ... else语句猜一个随机数

基础教程推荐