이번 글은 2개의 배열을 선언하고, 각 배열의 곱을 구하는 문제입니다.
1. 소스 코드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Array_Multiply
{
class Program
{
static void Main(string[] args)
{
int numArr1 = 0;
int numArr2 = 0;
numArr1 = Convert.ToInt32(Console.ReadLine());
int[] arr1 = new int[numArr1];
for(int i=0;i<numArr1;i++)
{
arr1[i] = Convert.ToInt32(Console.ReadLine());
}
numArr2 = Convert.ToInt32(Console.ReadLine());
int[] arr2 = new int[numArr2];
for (int i = 0; i < numArr2; i++)
{
arr2[i] = Convert.ToInt32(Console.ReadLine());
}
Console.Write("Result : [ ");
for(int i=0;i<numArr1;i++)
{
for(int j=0;j<numArr2;j++)
{
Console.Write(arr1[i]*arr2[j] + " ");
}
}
Console.WriteLine("]");
}
}
}
2. 결과
'Language > C# WPF Programming' 카테고리의 다른 글
C# WPF 프로그래밍 계산기(Calculator) 프로그램 만들기 - layout 추가(계산 과정, 히스토리 기능 추가) (1) | 2019.05.08 |
---|---|
C# WPF 프로그래밍 계산기(Calculator) 프로그램 만들기 - 기능 추가(X^2, 1/X, Delete, Sqrt 버튼 추가) (0) | 2019.05.06 |
[C# WPF 프로그래밍] 네이버 단축 URL API 사용 방법 및 코드 (1) | 2019.05.05 |
C# WPF 프로그래밍 상속 및 접근자 (0) | 2019.04.27 |
C# 기초 프로그래밍 Main 함수와 Console 코드 (0) | 2019.04.25 |
C# WPF 프로그래밍 공부한 내용 정리 (0) | 2019.04.24 |
C# WPF 프로그래밍 유저 컨트롤(User Control) 구현하기 (0) | 2019.04.23 |
C# WPF 프로그래밍 툴바(Tool Bar)구현 (0) | 2019.04.22 |
최근댓글