MedusaCppStudy ¶
봤
~cpp #include<iostream> using namespace std; int main() { int x; cin >> x; for(int i = 0; i < x; i++) { cout << "* "; } cout << endl; for(int j = 0; j < (x-2); j++) { cout << "*"; for(int k = 0; k < (x-2); k++) { cout << " "; } cout << " *" << endl; } for(int l = 0; l < x; l++) { cout << "* "; } cout << endl; return 0; }
봤
~cpp #include<iostream> using namespace std; int main() { int x; cin >> x; for(int i = 0; i < x-1; i++) { if(i == 0) { for(int j = (x-i-1); j > 0; j--) { cout << " "; } cout << "*" << endl; } else { for(int j = (x-i-1); j > 0; j--) { cout << " "; } cout << "*"; for(int k = 0; k < (2*i-1); k++) { cout << " "; } cout << "*" << endl; } } for(int l = 0; l < x; l++) { cout << "* "; } cout << endl; return 0; }
문 ,
(!! 2 )
런 문를 보 ;를 만났 문 는데
냥 면 문 . 뭐 ?
(!! 2 )
런 문를 보 ;를 만났 문 는데
냥 면 문 . 뭐 ?
~cpp #include<iostream> #include<string.h> using namespace std; int num(); char str[50]; int main() { cout << "뛰 마 50내 문 " << endl; cin.getline(str,50); int count = 0; int x = num(); cout << " : " << x << endl; int *lenth = new int [x]; int word = 0; for(int i = 0; i < strlen(str)+1; i++) { if((str[i] == ' ') || (i == strlen(str))) { lenth[word] = count; word++; count = 0; } else if(str[i] != '.') count++; } int temp; int k = 1; for(int l = 0; l < x-1; l++) { for(int m = k; m < x; m++) { if(lenth[l] < lenth[m]) { temp = lenth[l]; lenth[l] = lenth[m]; lenth[m] = temp; } } k++; } cout << " : " << lenth[0] << endl; cout << " : " << lenth[x-1] << endl; delete lenth; return 0; } int num() { int count2 = 1; for(int i = 0; i < strlen(str); i++) { if(str[i] == ' ') { count2++; } } return count2; }
4 내.....
를 밖 못 ..
를 밖 못 ..
~cpp #include<iostream> using namespace std; int main() { int num; cout << " 를 :"; cin >> num; cout << "를 례대 (는 ) :" << endl; int *pocket = new int[num]; for(int i = 0; i < num; i++) { cin >> pocket[i]; cin.get(); } int temp; int l = 1; for(int j = 0; j < num-1; j++) { for(int k = l; k < num; k++) { if(pocket[j] < pocket[k]) { temp = pocket[j]; pocket[j] = pocket[k]; pocket[k] = temp; } } l++; } cout << " 4 :"; if(num > 4) { for(int m = 0; m < 4; m++) { cout << pocket[m] << " "; } } else { for(int n = 0; n < num; n++) { cout << pocket[n] << " "; } } cout << endl; return 0; }리링 ~