本篇文章将讲解在win11环境下的王爽老师的汇编语言的环境搭建 首先凑齐这些文件: 随后安装好Dosbox,去官网下载就好 打开箭头所指文件 找到文件最后部分 [autoexec]
# Lines in this section will be run at startup.
# You can put your MOUNT lines here.
MOUNT C D:\Debug
…
题目 代码1
#include <bits/stdc.h>
using namespace std;
const int mod 1e97;
const int N 2010;
int f[N][N];
int cal_c(int n, int m)
{if(f[n][m]) return f[n][m];if(n - m > 0) if(f[n][n-m]) return f[n][m] f[n][n-m]; //*if(m > n) return 0; //*if…