AtCoder用備忘録
例えばx=1234を受け取って、以下のように各桁の値a=1、b=2、c=3、d=4を格納できます
main.cpp
int x; cin >>x;
//各桁の値をa,b,c,dとする
int a=x/1000;
int b=(x/100)%10;
int c=(x/10)%10;
int d=x%10;
Go to list of users who liked
More than 3 years have passed since last update.
AtCoder用備忘録
例えばx=1234を受け取って、以下のように各桁の値a=1、b=2、c=3、d=4を格納できます
int x; cin >>x;
//各桁の値をa,b,c,dとする
int a=x/1000;
int b=(x/100)%10;
int c=(x/10)%10;
int d=x%10;
Register as a new user and use Qiita more conveniently
Go to list of users who liked