Programming/Tip&Informaion (69) 썸네일형 리스트형 [C++] 무한 입력받기 #include using namespace std; int main(){ while(!cin.eof()){ string n; getline(cin,n); cout [C++] cin 하고 getstring 하는 법 // Declare second integer, double, and String variables. int i2; double d2; string s2; // Read and save an integer, double, and String to your variables. cin >> i2; cin >> d2; if (getline(cin >> ws, s2)) { // eat whitespace getline(cin, s2); } // Print the sum of both integer variables on a new line. cout [C++] 2차원 배열 동적 할당 #include int main(){//할당 int** arr; //이중포인터 arr = new int*[size1]; //기본 할당을 포인터로 처음 할당 for (int i = 0; i < size1; i++) arr[i] = new int[size2]; //배열을 새로 할당 //해제 for(int i = 0; i< size1; i++)delete[] arr[i]; //역순으로 해제delete[] arr; //역순으로 해제} //할당하고 나면 이차원 배열처럼 사용할 수 있다. [c++] cout 소수점 자릿수 정하기 2 cout.precision(6); cout [c++] sort #include #include using namespace std; int main(void){ int input[3]; for(int i = 0; i> input[i]; } sort(input,input+3); for(int i = 0; i EOF (테스트 케이스가 주어지지 않았을 때) while(scanf("%d %d", &a, &b) != EOF){ // run code } 를 사용하면 됨 헤더파일 #include or #include [c++] 공백까지 입력받기 #include using namespace std; int main(void) { char sentence[1000000] = { ' ' }; cin.getline(sentence, 1000000); return 0; } 소수점 이하 자리수 출력하는 법 #include #include using namespace std; int main(void) { int a, b; cin >> a >> b; cout 이전 1 ··· 5 6 7 8 9 다음