题解 | 构造三角形
构造三角形
https://www.nowcoder.com/practice/6babfd36cb6542c1aa31ceb016c393a5
#include <stdio.h>
int main(void) {
int t;
scanf("%d", &t);
while (t--) {
int a, b, c, d;
scanf("%d%d%d%d", &a, &b, &c, &d);
printf("%d %d %d\n", b, c, c);
}
return 0;
}