1번 문제
10 + 30 * 2 = 70
2번 문제
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
|
using System;
using System.Collections;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Console;
using System.IO;
namespace Practice2
{
class MainApp
{
static void Main(string[] args)
{
int[] array = { 11, 22, 33, 44, 55 };
int result = 0;
Action<int> action = (x) => result = x * x; // 람다식 밖에 선언한 result에 x*x의 값을 저장
foreach (int a in array)
{
action(a);
WriteLine(result);
}
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'Programming Language > 이것이 C# 연습문제 풀이' 카테고리의 다른 글
이것이 C# 16장 연습문제 풀이 (1) | 2019.12.20 |
---|---|
이것이 C# 15장 연습문제 풀이 (0) | 2019.12.20 |
이것이 C# 13장 연습문제 풀이 (0) | 2019.12.19 |
이것이 C# 12장 연습문제 풀이 (2) | 2019.05.15 |
이것이 C# 11장 연습문제 풀이 (0) | 2019.05.13 |