using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WindowsFormsApplication2 { public class Animal { protected string Name; private int Level; private int maxLevel = 100; private int minLevel = 1; public string UpLevel() { string message; if (this.Level < this.maxLevel) message = (Level++).ToString; else message = "레벨을 증가시킬수없당"; return message; } publi..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication3 { public class Animal { protected string Name; //필드 private int Level; //필드 private int maxLevel = 100 ; private int minLevel = 1; public void UpLevel() { if (this.Level < this.maxLevel) Level++; else Console.WriteLine("레벨을 증가할 수 없습니다."); } public void UpLevel(int Level) { if (this..
private int maxLevel = 100 ; private int minLevel = 1; public void UpLevel() { if (this.Level < this.maxLevel) Level++; else Console.WriteLine("레벨을 증가할 수 없습니다."); } public void UpLevel(int Level) { if (this.Level < this.maxLevel) this.Level += Level; else Console.WriteLine("레벨을 증가할 수 없습니다."); } public Animal(int Level) : this() { if (Level < this.minLevel) { this.Level = this.minLevel; Console.W..
package javaapplication7; public class JavaApplication7 { public static void main(String[] args) { Calculator cal=new Calculator(10); cal.Add(10); cal.Subtract(3); cal.Divide(4); cal.Multiply(3); cal.Factorial(); cal.Module(13); cal.Power(3); System.out.println("계산 결과 : "+ cal.GetResult()); } class Calculator { private long m_result; public Calculator(){} public Calculator(int n) { m_result=n; }..
- Total
- Today
- Yesterday
- Asus
- 안산
- m5a97
- AMD
- PS2
- Windows 10
- 노트북
- 일본여행
- 윈도우즈 10
- 디지바이스
- 플스2
- 듀얼쇼크4
- 프로그래밍
- 디지몬
- 보스
- 프라모델
- 구글
- ps4
- 피규어
- 이어폰
- razer
- 라이언
- 아이폰X
- 일본
- 마우스
- 고양이
- 애드센스
- 건담
- javascript
- 카카오프렌즈
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |