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; }~