展开全部
int i=1;
CString content;
CString str;
void CDemo2Dlg::OnButton1()
{
// TODO: Add your control notification handler code here
CString Type_Num;
GetDlgItem(IDC_EDIT1)->GetWindowText(Type_Num);
if(Type_Num.GetLength()!=4)
{
MessageBox("请输入正确的长度");
return;
}
int pos=0;
int correct=0;
int answer=0;
if(Type_Num==Correct_Num)
{
MessageBox("恭喜你答对了!");
}
else
{
for(int a=0;a<4;a++)
{
if(Type_Num.Find(Correct_Num.GetAt(a))!=-1)
{
correct++;
}
if(Correct_Num.Find(Type_Num.GetAt(a))!=-1)
{
answer++;
}
}
if(correct>answer)
correct=answer;
for(int c=0;c<4;c++)
{
if(Type_Num.GetAt(c)==Correct_Num.GetAt(c))
pos++;
}
content.Format("第%d次输入%s:有%d个相同的数字,且有%d个位置相同",i,Type_Num,correct,pos);
str=str+content+"\r\n";
GetDlgItem(IDC_EDIT2)->SetWindowText(str);
i++;
}
}
追问
谢谢你
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询