题解列表

筛选

校门外的树(建立set集合) (C++代码)

摘要:首先先介绍set集合:    c++ stl集合(Set)是一种包含已排序对象的关联容器。set会根据待定的排序准则,    自动将元素排序.set不允许元素重复 1) 不能直接改变元素值,因为……

此解可AC (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int num[4], i, j, k, t; for (i = 0; i < 4; i++)……

可AC(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t, a, b, c; scanf("%d", &t); a = t / 3600; t -= a * ……

可AC(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m, i,k, s = 0; while (scanf("%d %d", &n, &m) != E……