会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
myrj
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
96
97
98
99
100
101
102
103
104
···
188
下一页
2022年9月15日
C语言1-100间所有质数及质数和
摘要: #include <stdio.h> main() { int sum=0,a,b,c; for(a=2;a<=100;a++) { c=0; for(b=2;b<a;b++) { if(a%b==0) { c=1; break; } } if(c==0) { printf("%d ",a); su
阅读全文
posted @ 2022-09-15 09:50 myrj
阅读(506)
评论(0)
推荐(0)
2022年9月14日
身份证照片转复印件打印
摘要: 1.手机照身份证 2.打开WORD,插入图片 3.选择图片,裁剪 取消锁定纵横比 取消相对原始图片大小
阅读全文
posted @ 2022-09-14 20:35 myrj
阅读(1770)
评论(0)
推荐(0)
2022年9月13日
从网页或EXCEL中复制身份证号粘贴到EXCEL
摘要: 1.选择相应的内容复制 2.在目标位置设置“单元格格式” 文本 3.再选择性粘贴 值
阅读全文
posted @ 2022-09-13 14:50 myrj
阅读(1307)
评论(0)
推荐(0)
C语言优先级典型例题
摘要: #include <stdio.h> main() { int x,y,z; x=0;y=z=-1; x+=-z y;//只有赋值运算符 条件运算符 求字节运算符右结合,其他都为左结合。相当于x+=-(z--)-y; //自减优先级最高先计算z--,x+=-(-1)-y //x+=1-y=1-(-1
阅读全文
posted @ 2022-09-13 11:27 myrj
阅读(239)
评论(0)
推荐(0)
山东德州宁津城区
摘要: 康宁社区 地址:宁德路与黄河大街交叉路口向东路北(开运小区院内,金星御府对面) 康宁社区区域划分:阳光大街以南、文昌路以西、香江大街以北下辖村级网格: 高李、帽杨、武庄、杨太环、刘会普、杨青。 所辖小区:开运、天宫花园、万宏国际、帝景家园、盐百、馨园、御园、经适房(惠禾)、幸福里、东方红、宝莲华、贵
阅读全文
posted @ 2022-09-13 11:04 myrj
阅读(762)
评论(0)
推荐(0)
2022年9月11日
P138-5 C语言源代码
摘要: #include <stdio.h> main() { struct student{ char no[8]; char name[8]; int ps; int sx; int qm; float zp; }; struct student ab[10]={ { "2020001","张三1",8
阅读全文
posted @ 2022-09-11 19:27 myrj
阅读(51)
评论(0)
推荐(0)
xmks
摘要: 修改方法: A 截图,找到关键图截取B 重新截图,找到关键图所在位置图标(xx=100,yy=200)C找到关键区域(80,300,160,300)D 根据关键图位置图标计算关键区域坐标(xx-20,yy+100,xx+60,yy+100)E 找到关键区域中关键色(画图--吸管-吸取相应颜色,编辑颜
阅读全文
posted @ 2022-09-11 10:10 myrj
阅读(297)
评论(0)
推荐(0)
2022年9月9日
P138-3 源代码C语言
摘要: #include <stdio.h> struct student{ char name[12]; char number[9]; int score; }; struct student st[3]={{"zhang liang","19040301",87},{"li hong","180403
阅读全文
posted @ 2022-09-09 15:53 myrj
阅读(33)
评论(0)
推荐(0)
P138-2源代码 C语言
摘要: #include <stdio.h> struct student{ char name[12]; char number[9]; int score; }; struct student st[3]={{"zhang liang","19040301",87},{"li hong","180403
阅读全文
posted @ 2022-09-09 15:08 myrj
阅读(39)
评论(0)
推荐(0)
2022年9月8日
C语言利用函数和结构体:计算某日期是当年第几天
摘要: #include <stdio.h> static int day_tab[2][13]={{0,31,28,31,30,31,30,31,31,30,31,30,31},{0,31,29,31,30,31,30,31,31,30,31,30,31}}; struct date { int year
阅读全文
posted @ 2022-09-08 15:29 myrj
阅读(174)
评论(0)
推荐(0)
上一页
1
···
96
97
98
99
100
101
102
103
104
···
188
下一页
公告