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; }리링 망~