题解列表

筛选

IP判断 (C语言代码)

摘要:解题思路:注意事项:参考代码:int Jude(char *s){ int x=0; for(;*s;s++) { if(*s=='.') x=0; else if(*s>=&……

IP判断 (C语言代码)

摘要:解题思路:注意事项:参考代码:int Jude(char *s){ int x=0; for(;*s;s++) { if(*s=='.') x=0; else if(*s>=&……

校门外的树 (C语言代码)

摘要:解题思路:我们只需要用数组模拟一下即可。参考代码:#include <stdio.h> #include <string.h> int main() {     int l, m;     ……