题解 | 牛牛的第二个整数
牛牛的第二个整数
https://www.nowcoder.com/practice/6f3e10bcf63240a6b7bde95a22cb4cc4
#include <stdio.h>
int main() {
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
printf("%d", b);
return 0;
}
牛牛的第二个整数
https://www.nowcoder.com/practice/6f3e10bcf63240a6b7bde95a22cb4cc4
#include <stdio.h>
int main() {
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
printf("%d", b);
return 0;
}
相关推荐