일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- js 삭제 버튼
- 깃허브 꾸미기 예시
- js todolist
- js todo
- c++
- 노마드코더
- js date.now
- js localstorage
- 판다코딩
- js array id 부여
- 피그마 왕초보
- js forEach
- js 노마드코더
- js
- js 시간 표시
- js local storage
- js 시계만들기
- js 삭제 기능
- js 문자열을 배열로
- 깃허브 리드미 기술스택
- javescript
- js 문자열 변환
- 깃허브 뱃지 링크
- 깃허브 리드미 뱃지
- javascript
- js localstorage 저장
- 노마드코더 크롬앱 만들기
- js filter 삭제
- js preventDefault
- js string을 array로
- Today
- Total
목록판다코딩 (11)
I'm gonna be the BEST.

판다코딩 C++ 인강 공부 정리 [ 전체 코드 ] #include #include using namespace std; int main(){ //축구선수 struct MyStruct { string name; string position; int height; int weight; } B; MyStruct A; A.name = "Son"; A.position = "Striker"; A.height = 183; A.weight = 77; /* MyStruct A = { "Son", "Striker", 183, 77 } */ cout

판다코딩 C++ 인강 공부 정리 [ 사용자 입력 ] #include #include //strlen() 함수를 사용하기 위한 헤더파일 using namespace std; int main(){ //사용자 입력 const int Size = 15; char name1[Size]; //비어있는 배열 char name2[Size] = "C++programing"; cout

판다코딩 C++ 인강 공부 정리 C++는 복합데이터형을 제공한다. 사용자 정의대로 새로운 데이터형을 만들 수 있다. 복합데이터형 : 기본 정수형과 부동소수점형의 조합. [ 배열 ] #include using namespace std; int main() { short month[12] = { 1, 2, 3 }; cout

판다코딩 C++ 인강 공부 정리 #include using namespace std; int main() { // + - * / % int a = 10; int b = 3; int c = a + b; int d = a - b; int e = a * b; int f = a / b; int g = a % b; cout

판다코딩 C++ 인강 공부 정리 #include using namespace std; int main(){ //데이터형 변환 int a = 3.141592; cout
판다코딩 C++ 인강 공부 정리 #include //#define PIE = 3.1415926535 //c style using namespace std; int main(){ //상수 const float PIE = 3.1415926535; int r = 3; float s = r * r * PIE; } 상수 1. 바뀔 필요가 없는 수 2. 바뀌어서는 안되는 수 C에서 상수를 정의하는 스타일 define PIE = 3.1415926535 //c style C++에서 상수를 정의하는 스타일 const float PIE = 3.1415926535; C와는 다르게 변수형까지도 선언할 수 있다. 변수는 선언하고 나서 변수에 값을 대입할 수 있었지만, 상수는 값이 바뀌어서는 안되기 때문에 상수는 선언하면서 값을..

판다코딩 C++ 인강 공부 정리 #include using namespace std; int main() { //bool : 0 혹은 1 bool a = 0; bool b = 1; bool c = 10; cout