일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- '티스토리 초대장/ 티스토리초대'
- GitHub 미러링
- 실행시간 측정
- code .
- Path Alias
- gitlab 연동
- visual studio code
- 티스토리 초대장
- GitLab Mirroring
- 유니옥션
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- GitLab미러링
- webstorm
- React Native
- GitHub Mirroring
- code 세팅
- 티스토리초대
- 프리티어
- settings sync
- visual studio code cli
- 니돈내먹
- 네이버 클라우드 플랫폼
- code 설치
- 음료같은녹즙
- eslint-import-resolver-typescript
- 초대장
- Emmet
- 티스토리 초대장/ 티스토리초대
- react native #gradle
- currentTimeMillis
- Today
- Total
목록프로그래밍 (18)
방치하기
#include using std::cout; using std::endl; class junho { private: char name; int idNum; public: void setDet(int a,int b); int getName(void); junho() { name=1; idNum=0; } junho(int i) { name=i; idNum=1; } junho(int i,int j) { name=i; idNum=j; } }; void junho::setDet(int a,int b) { name=a; idNum=b; } int junho::getName(void) { return name; } void main() { junho jh;// 디폴트 생성자는 () 이게 없음 ; cout
#include using std::cout; using std::endl; class junho { private: int name; int idNum; public: void setDet(int a,int b); }; void junho::setDet(int a,int b) { name=a; idNum=b; } void main() { junho jh={1,2}; jh.setDet(3,11); cout
아직 해야할것, 한수두고 끝난다 .수정해야함. 게임이 끝난후 화면 다시 원래대로 돌아가게 해야함 . 방 몽록 출력해줘야함.. 기타 등등 .
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")..
소스 공부좀 해야지 'ㅡ'