自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 收藏
  • 关注

原创 2020-08-25

接口主要分为三大类 : 1. 用户管理 (管理员设置只能通过后台插入). 2. 菜品管理. 3. 订单管理.1.1 注册用户 :POST/register HTTP/1.1 200 OK{ { name : "username", ...

2020-08-25 21:54:39 159

原创 进制转换

十进制转二进制,一般人都知道短除法取余数的方法,但是如果数据很大的话,我们可能要算好久的,毕竟每次只是除以二,所以十进制转二进制应该算加法,........2^8 2^7 2^6 2^5 2^4 2^3 2^2 2^1 2^0. . . 256 128 64 ...

2020-03-05 16:30:55 186

原创

5位运动员参加了10米台跳水比赛,有人让他们预测比赛结果A选手说:B第二,我第三;B选手说:我第二,E第四;C选手说:我第一,D第二;D选手说:C最后,我第三;E选手说:我第四,A第一;比赛结束后,每位选手都说对了一半,请编程确定比赛的名次。#include<stdio.h>#include<stdlib.h>#include<Windows.h&...

2019-12-16 16:42:37 103

原创 无题

.实现一个函数判断year是不是润年。#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>void judgeLeapYear(int year){ scanf("%d", &year); if (year % 400 == 0 || year % 4 == ...

2019-12-16 16:39:52 78

原创 无题

使用函数实现两个数的交换。#include<stdio.h>#include<stdlib.h>void swap(int *pa,int *pb){ int tmp; tmp = *pa; *pa = *pb; *pb = tmp;}int d6p2(){ int a = 9; int b = 6; ...

2019-12-16 16:38:05 65

原创

实现一个函数,打印乘法口诀表,口诀表的行数和列数自己指定,输入9,输出9*9口诀表,输入12,输出12*12的乘法口诀表。#include<stdio.h>#include<stdlib.h>void printMulForm(int n){ int i, j; for (i = 1; i <= n; i++) { ...

2019-12-16 16:36:47 86

原创 无题

编写代码模拟三次密码输入的场景。最多能输入三次密码,密码正确,提示“登录成功”,密码错误,可以重新输入,最多输入三次。三次均错,则提示退出程序。#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>int d5p3(){ ...

2019-12-16 16:35:06 75

原创 无题

写代码可以在整型有序数组中查找想要的数字,找到了返回下标,找不到返回-1.(折半查找)#include<stdio.h>#include<stdlib.h>int d5p2(){ int arr[10] = { 0 ,1, 2, 3, 4, 5, 6, 7, 8, 9 }; int toFind = 1; int left = 0;...

2019-12-16 16:32:45 94

原创 无题

完成猜数字游戏#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<time.h>int d5p1(){ srand((unsigned int)time(NULL)); int s = rand() % 100 + 1; int...

2019-12-16 16:30:46 203

原创 Git 与 Github

今天安装了git和github,但还是不会用

2019-11-17 12:59:26 76

原创 第四

2.求出0~999之间的所有“水仙花数”并输出。“水仙花数”是指一个三位数,其各位数字的立方和确好等于该数本身,如;153=1+5+3?,则153是一个“水仙花数”。/*在数论中,水仙花数(Narcissistic number)也称为自恋数、自幂数、阿姆斯壮数或阿姆斯特朗数(Armstrong number),是指一N位数,其各个数之N次方和等于该数。例如153、370、371及407就...

2019-11-17 12:56:53 89

原创 第三

1. 将数组A中的内容和数组B中的内容进行交换#include<stdio.h>#include<stdlib.h>int main(){ int a[5] = {1,2,3,4,5}; int b[5] = {6,7,8,9,0}; int i; for (i = 0; i <= 4; i++) { ...

2019-11-17 12:53:50 139

原创 第二

1. 给定两个整形变量的值,将两个值的内容进行交换。#include<stdio.h>#include<stdlib.h>int mian(){ int temp; int x = 6; int y = 7; printf("x = %d\n,y = %d\n", x, y); temp = x; x = y;...

2019-11-17 12:49:54 78

原创 第一

1.打印100~200 之间的素数#include<stdio.h>#include<stdlib.h>#include<math.h>int main(){ int n; int i; for (n = 100; n <= 200; n++) { int sqrtres = sqrt(n);...

2019-11-17 12:43:24 64

原创 flag

我是裴梓杰, 我要在毕业之前找到一个年薪20w+的工作,累一点没关系,关键就是要赚的多! ...

2019-10-31 18:57:32 120 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除