自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 python变量、输入输出-xdd

1.注释#输入身高,计算BMI      注释1,单行注释...              注释2,多行注释xiedong..2.中文编码声明,UTF-8编码声明# coding=编码# coding=utf-83.建议每行不超过80个字符,若超过,建议用小括号括起来,如:s=("一有有有有意义有1有有有有有有有有有有有"有有有有有有有有有...

2019-09-27 21:03:00 217

转载 html学习笔记--xdd

<!DOCTYPE html><html><head> <title>HTML学习笔记</title> <meta charset="UTF-8"> <meta name="keywords" content="html,学习,笔记"> <me...

2019-09-25 15:55:00 151

转载 Fortran文件读写--xdd

1.常规读写program FileWriteRead implicit none open(unit=11,file="F:\desktop\File.txt") !open(unit=11,file="File.txt) write(11,"(A20)") "Good Morning" read(*,*)end prog...

2019-09-22 19:30:00 832

转载 Fortran数组、函数--xdd

1.数组的声明integer,parameter::num=5integer::student(num)或者 integer a(10)或者 integer a(10,6)student(1)=5 !第一个元素值为5,默认索引值从1开始赋初值integer A(5)data /1,2,3,4,5/data /5*0/ !5个0da...

2019-09-21 16:20:00 346

转载 github上传文件让别人下载--xdd

一、可以下载的条件仓库要为公开(public)该文件不可预览或者是图片,如.rar .gif .png .doc .pdf等格式二、打开文件的预览界面,如下三、将最上面的地址复制给别人即可,不建议待下载的文件里面有中文,有中文会使下载地址超长。注:不足之处为别人需要打开界面,单击download才能下载,不能做到打开链接直接下载,如有朋友知道...

2019-09-21 15:20:00 1355

转载 C#Windows Forms 使MessageBox顶层显示--xdd

方法1.MessageBox.Show("Text", "Caption", MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, MessageBoxOptions.ServiceNotification);方法2.MessageBox.Show("T...

2019-09-21 14:35:00 863

转载 2019.7.16.5.21留念

学会编程,重视理论!转载于:https://www.cnblogs.com/xdd1997/p/11196273.html

2019-09-20 10:18:00 91

转载 Fortran流程控制与逻辑运算、循环--xdd

1.IF语句1 if() then  ...  end if2 if() then  ...  else  ...  end if3 if() then  ...  else if() then  ...  else if() then  ...  ...  else  ...  end if4 if() then !if嵌套    if...

2019-09-19 16:50:00 743

转载 c#关于数据和方法在不同类中的引用-xdd

关于数据和方法在不同类中的引用using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[] ar...

2019-09-14 10:47:00 372

转载 C#Windows Forms (Demo.SYS)--xdd

1 private void Show_background_picture()//随机更换背景 2 { 3 string img_no = "01";//默认值 4 Random ran = new Random(); 5 int bg_index = ran.Next(1, ...

2019-08-22 00:23:00 151

转载 github下载历史版本--xdd

第一步打开一个仓库,可以看到此时在主分支下,点击1位置查看历史版本第二步现在可以查看到所有的版本(提交)信息,单击2位置进入该版本第三步单击3位置浏览并打开该版本第四步进入该版本之后,可以查看这一版本信息,单击4进入下载,进入单击5下载压缩包完转载于:https://www.cnblogs.com/xdd1997/p/11321909.html...

2019-08-08 16:22:00 534

转载 Matlab查看本机IP地址---xdd

复制粘贴于http://www.matlabsky.com/thread-28597-1-1.html1 [s, r]=system('ipconfig')2 % r=regexp(r,'IP Address. . . . . . . . . . . . : \d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}','match')3...

2019-08-07 15:04:00 1767

转载 Matlab生成Word--xdd

摘自《MATLAB统计分析与应用:40个案例分析》(谢中华老师著)P452页function CreatWord%利用Matlab生成wordfilespec_user = [pwd '\测试.docx']; %生成word% 判断Word是否已经打开,若已打开,就在打开的Word中进行操作,否则就打开Wordtry Word = actxGetR...

2019-07-30 14:13:00 620

转载 C#Windows Forms 计算器--xdd

一、计算器using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;name...

2019-07-28 15:50:00 231

转载 Fortran文件读写--查找内容

program eximplicit nonecharacter(len=40) A(3000),B(3000),C(3000) !A异常、B已开挖、C需标记integer i,j,N1,N2,count !N1是10号文件行数,N2是11号文件行数,count是计数器open(unit=10,file="10异常焊口编号列表.txt") !异常焊口编号...

2019-07-25 21:48:00 1226

转载 C#Windows Forms窗体、按钮-xdd

1.更换窗体图标方法:单击窗体,更改icon属性。2.调整窗体打开时默认位置方法:单击窗体,更改StartPotion属性。3.修改窗体大小方法:单击窗体,更改Size属性。4.设置窗体的背景图片方法:单击窗体,更改BackgroundImage属性。5.打开新窗体首先新建一个窗体 然后Form2 frm2 = new Form2(...

2019-07-25 00:01:00 550

转载 C#变量---xdd

cshape(c#)学习笔记1.string str1=Console.ReadLine();//键盘输入的默认为字符串2. Console.WriteLine('你的成绩是'+a+'分'); Console.WriteLine("a={0},b={1}",a,b)for(i=3;i<=10;i++) //for 的格式{}...

2019-07-20 21:46:00 155

空空如也

空空如也

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

TA关注的人

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