Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
박도현
c-sharp-study
Wiki
doh csharp 2.basic
doh csharp 2.basic
· Changes
Page history
dohun94 created page: doh csharp 2.basic
authored
Mar 08, 2017
by
박도현
Hide whitespace changes
Inline
Side-by-side
doh-csharp-2.basic.md
View page @
83292cba
...
...
@@ -71,5 +71,5 @@ char slash = '\\' //역슬래시는 두번입력해야 역슬래시로 표현.
int
n
=
Math
.
Max
(
0
,
5
);
//프로그램을 실행할 때 n값이 결정
const
int
maxN
=
Math
.
Max
(
0
,
5
);
//maxN은 상수이므로 컴파일할 때 값이 결정되어야 하는데
//Max 메소드는 런타임에 실행되므로 오류 발생
//Max 메소드는 런타임에 실행되므로 오류 발생
```