#include<iostream.h> void main() { int k=2,m=3,s=5; do{ if((k+m)%s) continue; ++m; k--; }while(k); cout<<k<<','<<m<<','<<s<<'\n'; } 查看完整描述