洗菜的车夫机试1

#include
using namespace std;
int main()
{
char c;
string str="";
int count=0;
int a[99];
while((c=cin.get())!='\n')
{
if(c!=',')
{
str=str+c;
}
else{
a[count++]=atoi(str.c_str());
str="";
}
}
a[count++]=atoi(str.c_str());
for(int i=0;i for(int i=0;i for(int j=i+1;j {
if(a[i]>a[j])
{
int temp;
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
for(int i=0;i {
if(i%4==0 && i!=0)cout< cout< }
return 0;
}

你可能感兴趣的:(洗菜的车夫机试1)