-1
내가 MIPS에 확인 대화 상자에 대한 코드에 문제가 오전 : 분명히확인 대화
.data Welcome1:.asciiz "\n Hello! you are about to play the mastermind guessing and logic game,Bulls & Cows!\n The Computer will generate a secret numbermade of 4 unique integer number.You have to guess the number!\n Using the number of Bulls and Cows you get to find out what the secret number is!\n" Welcome2: .asciiz "\nEvery digit you enter that is both correct and in the right location is a BULL. When you get 4 BULLS, YOU WIN!\n\nEvery digit you enter that is correct, but not in the right location is a COW!\n" confirm: .asciiz "\n Select \nYES - if you are ready to guess \n NO - to see the rules again \n Cancel - to exit the Game\n" .text main:jal welcome welcome: la $a0,Welcome1 li $a1,1 li $v0, 55 syscall la,$a0,Welcome2 li $v0,55 syscall la $a0,confirm li $v0,50 syscall Exit: li $v0,10 syscall
안녕하세요 @ user3341473 안녕하세요, stackoverflow. 코드로 인해 발생하는 문제에 대해 자세히 설명해 주시겠습니까? 당신은 그것이 무엇을 기대하며, 대신 무엇이 일어나고 있습니까? – Blckknght
프로그램 확인을 위해 "예"또는 "아니요"옵션이있는 확인 대화 상자를 찾고 있습니다. – user3341473