题解 | #牛牛的第二个整数#
牛牛的第二个整数
http://www.nowcoder.com/practice/6f3e10bcf63240a6b7bde95a22cb4cc4
#include<iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << b;
return 0;
}
牛牛的第二个整数
http://www.nowcoder.com/practice/6f3e10bcf63240a6b7bde95a22cb4cc4
#include<iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << b;
return 0;
}
相关推荐