일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 티스토리 초대장/ 티스토리초대
- GitLab미러링
- visual studio code
- visual studio code cli
- 유니옥션
- Path Alias
- currentTimeMillis
- React Native
- settings sync
- GitHub 미러링
- 티스토리초대
- 음료같은녹즙
- eslint-import-resolver-typescript
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- '티스토리 초대장/ 티스토리초대'
- webstorm
- Emmet
- gitlab 연동
- 니돈내먹
- GitHub Mirroring
- 초대장
- 실행시간 측정
- GitLab Mirroring
- 프리티어
- code .
- react native #gradle
- 티스토리 초대장
- 네이버 클라우드 플랫폼
- code 세팅
- code 설치
- Today
- Total
목록프로그래밍/C# (4)
방치하기
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Calc { public int a, b; public Calc(int a, int b) { this.a = a; this.b = b; } public void option(String opt) { if (opt=="+") { this.plus(); } else if (opt=="-") { this.minus(); } else if (opt=="/") { this.nanum(); } else if (opt=="*") { this.gob(); } else { } } public void plus() { System.Con..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class CirTest { private double r; double temp; public CirTest(double a) { this.r = a; } public double setR(double a) { r = a; return r; } public double rCal() { temp = r * 6.28; return temp; } public double r2Cal() { temp = r * r * 3.14; return temp; } } class Circle { public sta..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class WebDB { private String name; private String id; private String pw; //이름 관련 public WebDB() { } public WebDB(String a) { this.name = a; } public WebDB(String a, String b) { this.name = a; this.id = b; } public WebDB(String a, String b, String c) { this.name = a; this.id = b; ..
using System; class WhileTest { public static void Main() { bool ugly = false; bool fool = false; Console.WriteLine("******* 자가 진단 프로그램 ******"); while (!(ugly && fool)) { Console.WriteLine("당신은 예쁩니까?(y/n)"); if (Console.ReadLine() == "n" || Console.ReadLine() == "N") ugly = true; else ugly = false; Console.WriteLine("당신은 똑똑합니까?(y/n)"); if (Console.ReadLine() == "n" || Console.ReadLine() == "N")..