这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include #include using namespace std; int s[100]; void f(int n) { s[n % 10] = 1; s[n / 10 % 10] = 1; s[n / 100] = 1; } int main() { ios::sync_with_stdio…
```cpp #include using namespace std; bool add1(int n) { if (n % 100 != 0 && n % 4 == 0) { return 1; } else if (n % 400 == 0) { return 1; } else return 0; } int…
在讨论《全WA求调》回复:
题目描述 给出平面坐标上不在一条直线上三个点坐标 ( x 1 , y 1 ) , ( x 2 , y 2 ) , ( x 3 , y 3 ) (x 1 ,y 1 ),(x 2 ,y 2 ),(x 3 ,y 3 ),坐标值是实数,且绝对值不超过 100.00,求围成的三角形周长。保留两位小数。 对…
```cpp #include #include #include using namespace std; double add1(double x1, double x2, double y1, double y2) { return sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) *…
```cpp #include #include #include using namespace std; double add1(double x1, double x2, double y1, double y2) { return sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) *…