摘要: 基本输入输出 1.接收多行数据,直到文件末尾 1 #include <iostream> 2 //#include <bits/stdc++.h> 3 #include <string> 4 5 using namespace std; 6 7 int main() 8 { 9 string sa, 阅读全文
posted @ 2021-01-05 12:12 -Asurada- 阅读(278) 评论(0) 推荐(0) 编辑
摘要: @echo offtitle Activate Microsoft Visio 2019&cls&echo &echo #Visio: Activating Microsoft software products for FREE without software&echo &echo.&echo 阅读全文
posted @ 2020-06-24 21:06 -Asurada- 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 例如:求e^(x+2y+3z)+xyz=1 求dz (可确定z=z(x,y)函数) 方法1:对两边求微分得 e^(x+2y+3z)d(x+2y+3z)+d(xyz)=0 该方法使用了微分形式得不变性,也就是说此时这个式子在求微分的时候不用管谁是谁得函数,将自变量和应变量一视同仁,看作是平等的量 为了 阅读全文
posted @ 2020-06-03 17:07 -Asurada- 阅读(2684) 评论(0) 推荐(0) 编辑
摘要: 微分方程中有两个地方用到齐次: 1、形如y'=f(y/x)的方程称为“齐次方程”,这里是指方程中每一项关于x、y的次数都是相等的,这个是指dy/dx是0次齐次函数。 2、形如y''+py'+qy=0的方程称为“齐次线性方程”,这里“齐次”是指方程中每一项关于未知函数y及其导数y',y'',……的次数 阅读全文
posted @ 2020-05-30 09:14 -Asurada- 阅读(8596) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/yyp0304Devin/article/details/89853300?tdsourcetag=s_pctim_aiomsg#%E4%B8%89%E3%80%81%E8%A7%A3%E9%A2%98%E6%96%B9%E6%B3%95 阅读全文
posted @ 2019-10-27 21:27 -Asurada- 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 补码(Two's complement)、反码(Ones' Complement)、原码(Sign Magnitude): 注意,补码和反码中,撇号的位置不同。 术语补码来源于这样一个情况,对于非负数x,我们用2ⁿ - x(这里只有一个2)来计算-x的n位表示; 术语反码来源于这样一个属性,我们用[ 阅读全文
posted @ 2019-10-19 13:08 -Asurada- 阅读(5580) 评论(0) 推荐(0) 编辑
摘要: package com.situ.cotroller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.beans.fact... 阅读全文
posted @ 2019-07-19 00:07 -Asurada- 阅读(200) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <math.h> using namespace std; class newInt{public: int x; newInt(int x=0):x(x){} friend istream &operator>>(istream &is,ne 阅读全文
posted @ 2019-05-29 17:41 -Asurada- 阅读(324) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int a[31]={0}; int sum=0; void dfs(int cur) { if(a[cur-1]==0) { a[cur]=1; } if(cur==30) { sum++; return; } else ... 阅读全文
posted @ 2019-05-23 21:26 -Asurada- 阅读(189) 评论(0) 推荐(0) 编辑
摘要: const int n = 4; void dfs(int cur) { if(n==cur) { for(int i=0;i using namespace std; const int maxn=6; const int maxm=6; int vis[maxm][maxn]={0}; void dfs(int x,int y,int cur) { ... 阅读全文
posted @ 2019-05-21 23:39 -Asurada- 阅读(216) 评论(0) 推荐(0) 编辑