标签:std -- nbsp ide ret lap using spl play
A:https://codeforces.ml/contest/1337/problem/A
x取b,y和z取c即一定可以构成三角形
1 #include <bits/stdc++.h> 2 using namespace std; 3 4 int main() 5 { 6 int t; cin >> t; 7 while(t --) 8 { 9 int a, b, c, d; 10 cin >> a >> b >> c >> d; 11 printf("%d %d %d\n", b, c, c); 12 } 13 return 0; 14 }
B:https://codeforces.ml/contest/1337/problem/B
标签:std -- nbsp ide ret lap using spl play
原文地址:https://www.cnblogs.com/nonameless/p/12810905.html