摘要: 分糖果问题 源代码 #include <iostream>using namespace std;int judge(int c[]){ int i; for(i=0;i<10;i++) if(c[0]!=c[i]) return 1; return 0; }int main(){ int coun 阅读全文
posted @ 2023-05-08 18:31 晨观夕 阅读(25) 评论(0) 推荐(0) 编辑