摘要: 1 import std.stdio, std.string; 2 3 void main() 4 { 5 bool find(T)(T[] all, T sub) 6 { 7 foreach(each; all) 8 { 9 if(each == sub) return true; 10 } 11 阅读全文
posted @ 2021-03-09 10:32 天使不设防 阅读(129) 评论(0) 推荐(0) 编辑