일일 코딩 문제 #634
[1, 3, 2, 5]
는 다음 다이어그램에 해당합니다.
#include<iostream>
using namespace std;
int main(){
int n;
cout << "Enter size of the array -> ";
cin >> n;
int a[n],max = 0;
// input
for(int i=0;i<n;i++){
cin >> a[i];
if(a[i] > max){
max = a[i];
}
}
// output
for(int i=max;i>0;i--){
for(int j=0;j<n;j++){
if(a[j] >= i)
cout << "x";
else
cout << " ";
}
cout << endl;
}
}
Output:
Reference
이 문제에 관하여(일일 코딩 문제 #634), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/raviagheda/daily-coding-problem-634-148p텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)