티스토리 뷰
C# 구구단 게임 만들기
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 구구단게임
{
public partial class Form1 : Form
{
int x;
int y;
int z;
Random r = new Random();
public Form1()
{
InitializeComponent();
Question();
}
private void Question()
{
r.Next();
x = r.Next(2, 9); //2~9 random
r.Next();
y = r.Next(1, 9); // 1~9 random
z = x * y;
lbl_num1.Text = x.ToString();
lbl_num2.Text = y.ToString();
numAnswer.Value = 0;
}
private void numAnswer_KeyDown(object sender, KeyEventArgs e)
{
//엔터키를 누를경우
if(e.KeyCode == Keys.Enter)
{
if (numAnswer.Value == z)
{
MessageBox.Show("정답입니다.", "정답", MessageBoxButtons.OK, MessageBoxIcon.Information);
Question();
}
else
{
MessageBox.Show("오답입니다.", "오답", MessageBoxButtons.OK, MessageBoxIcon.Error);
Question();
}
}
}
private void button1_Click(object sender, EventArgs e)
{
if(numAnswer.Value == z)
{
MessageBox.Show("정답입니다.", "정답", MessageBoxButtons.OK, MessageBoxIcon.Information);
Question();
}
else
{
MessageBox.Show("오답입니다.", "오답", MessageBoxButtons.OK, MessageBoxIcon.Error);
Question();
}
}
}
}
'프로그래밍 > C#' 카테고리의 다른 글
c# QR코드 발생기 소스코드 (0) | 2019.03.04 |
---|---|
C# 드래그 앤 드롭 픽쳐 이미지 (0) | 2019.02.28 |
C# 동적으로 텍스트박스, 라벨, 버튼 만들기 (0) | 2019.02.28 |
날짜조회하기 및 데이타그리드뷰에 mysql open하지 않고 뷰하기 (0) | 2019.01.23 |
c# 윈폼 콤보박스에 mysql 내용 open하지 않고 불러오기 (0) | 2019.01.23 |