-
C++연습_문자열(내가 친 단어를(이름5개)) 순서대로 정렬하여 출력하기_최종본코딩Coding/C++_연습 2020. 12. 20. 17:27728x90
#include<iostream> #include<string.h> #include<stdio.h> using namespace std; int main() { char str[5][20], t[20]; int i, j; cout << "\n Enter Any Five Names : \n\n"; for (i = 0; i < 5; i++) { cout << " "; cin >> str[i]; } for (i = 1; i < 5; i++) { for (j = 1; j < 5; j++) { if (strcmp(str[j - 1], str[j]) > 0) { strcpy(t, str[j - 1]); strcpy(str[j - 1], str[j]); strcpy(str[j], t); } } } cout << "\n Names Sorted in Alphabetical Order : \n\n"; for (i = 0; i < 5; i++) { cout << " "; cout << str[i] << "\n"; } return 0; }
결과
www.tutorialride.com/cpp-strings-programs/sort-strings-in-alphabetical-order-c-program.htm
반응형'코딩Coding > C++_연습' 카테고리의 다른 글
[C++연습]Calculator계산기 만들기 (0) 2020.12.22 C++연습_숫자 영어로 입력하면 숫자로 출력하기 (0) 2020.12.20 C++연습_숫자를 영어로 출력하기 (0) 2020.12.20 C++연습_내가 입력한 숫자가 홀수(odd)나 짝수(even)인지 구별 하여 출력하기 (0) 2020.12.20 C++연습_문자열(내가 친 단어를) 순서대로 정렬하여 출력하기 (0) 2020.12.20 C++)to sort an array in Descending Order& Ascending Order (0) 2020.12.11 C++연습) Array input and output입력받고 입력받은 값 출력하기(DevC++돌림,VisualStudio에러남 원인모르겠음) (0) 2020.12.01 C++) 난수생성 후 내림차순 정렬(Descending), 오름차순 정렬(Ascending) (0) 2020.11.30