首页 > 其他 > 详细

语法问题

时间:2020-03-28 09:08:16      阅读:52      评论:0      收藏:0      [点我收藏+]

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] << " \n"[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;
}

语法问题

原文:https://www.cnblogs.com/guaguastandup/p/12585193.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!