求C语言编写的猜数字游戏程序#include<iostream> using namespace std; int main() { char s[88],r[88]; printf(" 本游戏只能猜8次!! 请输入游戏四位不重复的数字 "); scanf("%s",s); if(strlen(s)!=4)exit(1); else { int t=0; ...