语法问题
Posted guaguastandup
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了语法问题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/blog/entry/15643
scanf
scanf("%c",&c);
可以输入换行符
scanf("%s",s+1);
不会读取换行符
pair<int,int> p;
p = {3,4};
vector<int>v;
v = {3,4,5,6};
tuple
tuple<int,int,int> t;
t = {1,2,3};
int x = get<1>(t);
cout<<x<<endl;
builtin
int x = __builtin_ffs(16);//返回最低位1的位置
int y = __builtin_ctz(16);//返回尾0的个数
int z = __builtin_popcount(x);//返回1的个数
Output
for(i = 1; i <= n; i++)
for(j = 1; j <= m; j++)
cout << a[i][j] << "
"[j == m];
pow
今天long long范围内调用了pow函数,然后WA了
改成这样就过了,待解决
ll p(ll a,ll b){
ll ans = 1;
for(ll i=1;i<=b;i==){
ans*=a;
}
return ans;
}
以上是关于语法问题的主要内容,如果未能解决你的问题,请参考以下文章