五楼的不错
#include<iostream.h>
#include<iomanip.h>
int main()
{
int x,y;
cout<<setw(15)<<""<<setfill('*')<<setw(19)<<" "<<setw(11)<<endl;
cout<<" "<<setw(24)<<" "<<setw(20)<<endl;
cout<<" "<<setw(54)<<endl;
cout<<" "<<setw(58)<<endl;
cout<<setw(60)<<endl;
for(x=1;x<=30;x++)
{
cout<<setfill(' ')<<setw(x++);
for(y=65;y>x*2+2;y--)cout<<"*";
cout<<endl;
}
cout<<setw(30)<<"*"<<endl;
cout<<" My heart belongs to you!"<<endl;
cout<<endl;
cout<<endl;
return 0;
}