ES6实际上是一个泛指,泛指 ES2015 及后续的版本 1,let用于声明变量的关键字 let 声明的变量只在所处于的代码块内有效 if (true) { let a 10 } console.log(a) // a is not defined
2, let 不存在变量提升 console.log(a) // a is not deined let a 1…
题目链接:https://www.acwing.com/problem/content/1314/ , Code
#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;typedef long long LL;const int p 1000003;int qmi(int a, int k)
{int res 1…