小红的签到题
本题只需任意输出一个字符串,只要满足题目要求即可
#include<bits/stdc.h>
using namespace std;
int main(){int n;cin>>n;cout<<"a_";//这里最多只能有两个字符,因为末尾是下划线,当n3时就不满…
看下面的例子
#include<type_traits>
// define a class template, and the template parameter is a value of bool。by default,this class is empty, doesnt define any member
template<bool Condition>
struct lfEnableIf
{ };
// specialize the above clas…