일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 연습
- CGV
- 포트폴리오
- VR
- XR
- 팀프로젝트
- 팀 프로젝트
- Photon Fusion
- 드래곤 플라이트 모작
- OVR
- 앱 배포
- 유니티 Json 데이터 연동
- input system
- 모작
- 유니티
- 개발
- 유니티 UI
- 개발일지
- Oculus
- HAPTIC
- meta
- meta xr
- 드래곤 플라이트
- 멀티플레이
- 가상현실
- 오브젝트 풀링
- 오큘러스
- 유니티 GUI
- ChatGPT
- 길건너 친구들
Archives
- Today
- Total
EasyCastleUNITY
2023/07/20 퀴즈 7번 본문
using System;
namespace LearnDotnet
{
internal class Program
{
static void Main(string[] args)
{
Console.Write("구구단의 단수를 입력하세요:");
string numChar =Console.ReadLine();
int num = Convert.ToInt32(numChar);
if (num < 1 || num > 9)
{
Console.WriteLine("구구단의 범위를 벗어났습니다");
}
else
{
for (int i = 0; i < 9; i++)
{
Console.WriteLine("{0}x{1}={2}", num, i + 1, num * (i + 1));
}
}
}
}
}
'C#프로그래밍' 카테고리의 다른 글
2023/07/20 퀴즈 9번 (0) | 2023.07.20 |
---|---|
2023/07/20 퀴즈 8번 (0) | 2023.07.20 |
2023/07/20 퀴즈 6번 (0) | 2023.07.20 |
2023/07/20 퀴즈 5번 (0) | 2023.07.20 |
2023/07/20 퀴즈 4번 (0) | 2023.07.20 |