분류 전체보기
-
문제 링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1047번 #include using namespace std; int main(){ int a; cin >> a; cout > b; cout
코드업 (Code up) 1047~1048 (비트시프트) [ C++, CPP ]문제 링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1047번 #include using namespace std; int main(){ int a; cin >> a; cout > b; cout
2020.03.05 -
문제링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1038번 #include using namespace std; int main(){ long long a, b; cin >> a >> b; cout > a >> b; cout > a ; cout > a; cout > a>>b; cout
코드업 (Code up) 1038~1046 (산술연산) [ C++, CPP ]문제링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1038번 #include using namespace std; int main(){ long long a, b; cin >> a >> b; cout > a >> b; cout > a ; cout > a; cout > a>>b; cout
2020.03.04 -
문제 링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1031번 #include using namespace std; int main(){ int a; scanf("%d",&a); printf("%o",a); // %o : 8진수로 출력 (octal) } %o : 8진수로 출력 (octal) *1032번 #include using namespace std; int main(){ int a ; scanf("%d",&a); printf("%x",a); //%x (소문자x) : hexadecimal(16진수)의 소문자로 출력 } %x (소문자x) : hexadecimal(16진수)의 소문자로 출력 *1033번 #include ..
코드업 (Code up) 1031~1037 (출력변환) [ C++, CPP ]문제 링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1031번 #include using namespace std; int main(){ int a; scanf("%d",&a); printf("%o",a); // %o : 8진수로 출력 (octal) } %o : 8진수로 출력 (octal) *1032번 #include using namespace std; int main(){ int a ; scanf("%d",&a); printf("%x",a); //%x (소문자x) : hexadecimal(16진수)의 소문자로 출력 } %x (소문자x) : hexadecimal(16진수)의 소문자로 출력 *1033번 #include ..
2020.03.04 -
문제 링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1028번 #include using namespace std; int main(){ long long a; cin >> a; cout > a; cout > a; cout
코드업 (Code up) 1028~1030 (데이터형) [ C++, CPP ]문제 링크 : https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1028번 #include using namespace std; int main(){ long long a; cin >> a; cout > a; cout > a; cout
2020.03.04 -
문제 링크 :https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1010번 #include using namespace std; int main(){ int a; cin >> a; cout > c; cout > n; cout >b; cout
코드업 (Code up) 1010~1027 (입출력) [ C++, CPP ]문제 링크 :https://codeup.kr/problemsetsol.php?psid=23 문제집 / 기초 100제 codeup.kr *1010번 #include using namespace std; int main(){ int a; cin >> a; cout > c; cout > n; cout >b; cout
2020.03.04 -
*문자열 (string) 문자는 char로 선언한다. 한글자가 아닌 여러개의 문자를 문자열 이라고 하며, 문자열을 선언(저장)하는 방법은 두가지이다. 1) 포인터를 사용한다. char *변수이름 = "문자열"; 2) 문자열 배열을 사용한다. char 변수이름[size] = "문자열"; (size를 비워두면 알아서 문자열 크기만큼 할당된다.) 1)은 문자열 리터럴을 포인터에 할당하지만, 2)는 배열 요소 하나하나에 문자가 저장된다. 포인터로 선언하던, 문자열 배열로 선언하던 마지막 인덱스에는 공백(NULL)이 들어간다. 문자열 보다 , 배열을 더 큰 size로 선언한다면, 문자가 들어가고 남는 나머지공간은 NULL 로 채워진다. int 배열과는 달리, 문자열 배열은 선언 즉시 문자열로 초기화 해야한다.( ..
C 언어 - 문자열 총정리 | 문자열 관련 함수 , 버퍼 (buffer) 포인터 문자열 (pointer) , 입력값 받기 (scanf , EOF ,strlen)*문자열 (string) 문자는 char로 선언한다. 한글자가 아닌 여러개의 문자를 문자열 이라고 하며, 문자열을 선언(저장)하는 방법은 두가지이다. 1) 포인터를 사용한다. char *변수이름 = "문자열"; 2) 문자열 배열을 사용한다. char 변수이름[size] = "문자열"; (size를 비워두면 알아서 문자열 크기만큼 할당된다.) 1)은 문자열 리터럴을 포인터에 할당하지만, 2)는 배열 요소 하나하나에 문자가 저장된다. 포인터로 선언하던, 문자열 배열로 선언하던 마지막 인덱스에는 공백(NULL)이 들어간다. 문자열 보다 , 배열을 더 큰 size로 선언한다면, 문자가 들어가고 남는 나머지공간은 NULL 로 채워진다. int 배열과는 달리, 문자열 배열은 선언 즉시 문자열로 초기화 해야한다.( ..
2020.03.04