Đề bài yêu cầu viết chương trình sắp xếp các số này theo thứ tự tổng các chữ số tăng dần.mn xem giúp mình xem code sai chỗ nào với
#include<bits/stdc++.h>
using namespace std;
int tongchuso(int n){
int s=0;
int chuso=n;
for(;s!=0;){
chuso=n%10;
s+=chuso;
n/=10;
}
return s;
}
int main(){
int n;
cin>>n;
int a[n];
for(int i=0;i<n;i++){
cin>>a[i];
}
int tg;
for(int i = 0; i < n ; i++){
for(int j = i + 1; j < n; j++){
if(tongchuso(a[i]) > tongchuso(a[j])){
tg = a[i];
a[i] = a[j];
a[j] = tg;
}
}
}
for(int i=0;i<n;i++){
cout<<a[i]<<" ";
}
return 0;
}