题解 | 不要三句号的歪
不要三句号的歪
https://www.nowcoder.com/practice/7cbb7d96fb354f7995d9af1ccf8906b4
#include <iostream>
using namespace std;
int main() {
long long int a,b,c;
scanf("%lld,%lld,...,%lld",&a,&b,&c);
cout << (c-b-1) << endl;
}
不要三句号的歪
https://www.nowcoder.com/practice/7cbb7d96fb354f7995d9af1ccf8906b4
#include <iostream>
using namespace std;
int main() {
long long int a,b,c;
scanf("%lld,%lld,...,%lld",&a,&b,&c);
cout << (c-b-1) << endl;
}
相关推荐