我是靠谱客的博主 大胆大象,最近开发中收集的这篇文章主要介绍c语言之玩游戏,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1 二分查找/折半查找

 2 密码登录

int main()
{
    int i =0;
    char password[20] = "";
//    假设密码是"123456"
    for (i = 0; i < 3; i++)
    {
        printf("请输入密码:>");
        scanf("%s", password);
        if (strcmp(password, "123456") == 0)
        {
            printf("登陆成功n");
            break;
        }
        else
        {
            printf("密码错误n");
        }

    }
    if (i == 3)
    {
        printf("推出程序n");

    }
    return 0;
}

3猜数字游戏

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void menu()
{
    printf("*****************************n");
    printf("**********  1.play  *********n");
    printf("**********  0.exit  *********n");
    printf("*****************************n");
}
void game()
{
    int guess = 0;
    //猜数字游戏的过程
    //生成随机数
    int r = rand() % 100 + 1;
    while (1)
    {//猜数字
        printf("猜数字:>");
        scanf_s("%d", &guess);
        if (guess < r)
        {
            printf("猜小了n");
        }
        else if (guess > r)
        {
            printf("猜大了 n");
        }
        else
        {
            printf("恭喜你,猜对了n");
            break;
        }
    }
}

int main()
{
    int input = 0;
    srand((unsinged int)time(NULL));
    do
    {

        menu();
        printf("请选择:>");
        scanf_s("%d", &input);
        switch (input)
        {
        case 1:
            printf("猜数字n");
            break;
        case 0:
            printf("退出游戏n");
            break;
        default:
            printf("选择错误n");
            break;
        }
    } while (input);

    return 0;
}

最后

以上就是大胆大象为你收集整理的c语言之玩游戏的全部内容,希望文章能够帮你解决c语言之玩游戏所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部