自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 物联网综合应用作业三

① vim write.c#include <stdio.h>#include <unistd.h>#include <fcntl.h>#include <string.h>#include <sys/mman.h>struct student { char name[20]; int id; int age; char sex;};int main(){ struct studen

2021-10-03 11:56:12 1925

原创 物联网综合应用 第二次作业

1. pwd查看当前目录 在当前目录 mkdir zuoye02 新建目录2. cd zuoye02 进入文件夹3.vim write.c#include<stdio.h>#include<fcntl.h>#include<unistd.h>struct stu { char name[20]; int id; int age; char sex;};int main() { struct stu stu.

2021-09-19 22:19:31 2608

原创 2021-09-07

作业: 将判断是否为闰年函数 打印菱形的函数 编码实现 并制作成共享库 通过main.c使用该共享库①mkdir zuoye(新建文件夹)②cd zuoye③vim year.cC语言判断是否为闰年void is_leap(int year){ if(year%400==0) printf("%d 此年为闰年\n",year); else { if(year%4==0&&year%100!=0) p...

2021-09-07 11:46:11 217 2

空空如也

空空如也

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

TA关注的人

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