摘要: <!DOCTYPE html> <!--申明文档类型html--> <html> <!--html标签--> <head> <meta charset="UTF-8"> <title>百度一下,你就知道</title> <style> *{ margin: 0; padding: 0; } .a{ 阅读全文
posted @ 2019-10-16 11:02 JackieDYH 阅读(3) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <style type="text/css"> *{ margin: 0; padding: 0; } body{ background: #00 阅读全文
posted @ 2019-10-16 10:58 JackieDYH 阅读(8) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <style type="text/css"> *{ margin: 0; padding: 0; } #box{ width:500px; he 阅读全文
posted @ 2019-10-16 10:55 JackieDYH 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>百叶窗</title> </head> <style type="text/css"> *{ margin: 0px; padding: 0px; } #box{ width: 8 阅读全文
posted @ 2019-10-16 10:53 JackieDYH 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>注册百度账号</title> </head> <style> *{ margin:0; padding:0; } body{ width:80%; margin:auto; } # 阅读全文
posted @ 2019-10-16 10:50 JackieDYH 阅读(31) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <style type="text/css"> * { margin: 0px; padding: 0px; } #mycanvas { bord 阅读全文
posted @ 2019-10-16 10:46 JackieDYH 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #ifndef _mynurbs_h #ifndef _MYNURBS_H #include "gl\gl.h" #include "math.h" //*-*-*-*-*-*-*-*-*-*-*-*-*-*-* B样条基函数计算部分 *-*-*-*-*-*-*-*-*-*-*-*-*-* //确定 阅读全文
posted @ 2019-09-30 09:33 JackieDYH 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<string.h> struct Student//声明结构体类型 { int num; char name[20]; char sex; int age; char beizhu[100]; 13 }; void main() { int co 阅读全文
posted @ 2019-09-30 09:31 JackieDYH 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX 1000 typedef struct Lesson //定义课程结构体 { int Lesson_Num; char Lesson_Name[50]; in 阅读全文
posted @ 2019-09-30 09:28 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> main() {int x,y,z,m,i,a=1; scanf("%d%d",&x,&y); m=x; if(x<y){ x=y; y=m; } for(i=2;i<=y;i++){ if(x%i==0 && y%i==0) a=i; } printf("zdg 阅读全文
posted @ 2019-09-30 09:26 JackieDYH 阅读(3) 评论(0) 推荐(0) 编辑