一、完成猜数字游戏
在这个代码中我用了一个C语言中很少用到的goto语句;这个语句不被广泛看好,但是这个语句的语义是可以改变程序流程,直接转到它所指向的语句,而break仅仅只能跳出当前循环,但相对break而言,C语言中goto语句更容易引起程序崩溃,所以很多人不推荐用它,以至于很多人不太明白它的用法。
同时使用了rand()函数和time函数来进行随机数的调用,具体源代码如下:
#define _CRT_SECURE_NO_WARNINGS
#include "stdio.h"
#include "stdlib.h"
#include "time.h"
void main()
{
int num;
int j = 0;
printf("输入1 开始游戏\n输入0 退出游戏\n");
scanf("%d", &j);
if (j == 1){
printf("游戏开始!\n");
}
if (j == 0){
printf("退出游戏!\n");
goto stop;
}
srand((unsigned)time(0));
int random = rand() % 100;
while (1){
printf("请输入您猜的数字: \n");
scanf("%d", &num);
if (num > random){
printf("猜高了!");
}
else if (num < random){
printf("猜低了!");
}
else
goto right;
}
right :
printf("猜对了");
stop: ;
system("pause");
return 0;
}
二、写代码可以在整型有序数组中查找想要的数字, 找到了返回下标,找不到返回-1.(折半查找)
折半查找的原理大家都知道,这种查找办法使许多巨大的筛选工程一次可以消减一半,在实际应用中十分好用,以下为源代码:
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
int main()
{
int arr[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int k;
int left = arr[0];
int right = sizeof(arr) / sizeof(arr[0]) - 1;
printf("请输入需要查找的数:\n");
scanf("%d", &k);
while (left <= right)
{
int mid = left + (right - left) / 2;
if (arr[mid] == k)
{
printf("找到了,下标为:%d\n", mid);
return 1;
break;
}
else if (arr[mid] <= k)
{
left = mid + 1;
}
else
{
right = mid - 1;
}
}
if (left > right)
{
printf("没找到");
}
system("pause");
return 0;
}
三、编写代码模拟三次密码输入的场景。
最多能输入三次密码,密码正确,提示“登录成功”,密码错误,
可以重新输入,最多输入三次。三次均错,则提示退出程序。
#define _CRT_SECURE_NO_WARNINGS
#include "stdio.h"
#include "stdlib.h"
#include "math.h"
#include "string.h"
void main()
{
char password[6];
char passwork1[] = "123456";
int i = 0;
while (1){
for (i = 1; i <= 3; i++){
printf("请输入您的密码: \n");
scanf("%s", &password);
if (strcmp(password, passwork1) == 0){
break;
}
else
printf("密码错误!");
}
break;
}
printf("登陆成功!");
if (i > 3){
printf("您已输错三次密码,无法再输入");
}
system("pause");
return 0;
}
四、编写一个程序,可以一直接收键盘字符,
如果是小写字符就输出对应的大写字符,
如果接收的是大写字符,就输出对应的小写字符,
如果是数字不输出。
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
int main()
{
char letter;
while (1){
printf("请输入字母:\n");
scanf("%c", &letter);
if (letter >= 'A'&&letter <= 'Z'){
printf("小写字母为: %c\n", letter + 32);
}
else if (letter >= 'a'&&letter <= 'z'){
printf("大写字母为: %c\n", letter - 32);
}
else if (letter<'A' || letter>'z')
{
printf("您的输入有误,请重新输入!\n");
}
}
system("pause");
return 0;
}
结束,比心~
今天的文章猜数字游戏及相关例题及答案_猜数字游戏1-100「建议收藏」分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/62452.html