Курсовая работа: Проектирование и разработка классов средствами языка программирования С++Builder6/0
void Components (wind w,float&v,float&u) const
{v=V*sin (dd);
u=V*cos (dd); }
};
TForm1 *Form1;
const n=10;
wind array [n] ; float v,u;
// ---------------------------------------------------------------------------
__fastcall TForm1:: TForm1 (TComponent* Owner)
: TForm (Owner)
{
}
// ---------------------------------------------------------------------------
void __fastcall TForm1:: FormCreate (TObject *Sender)
{
StringGrid1->Cells [0] [0] ="Направление в град. ";
StringGrid1->Cells [1] [0] ="Скорость";
StringGrid1->RowCount=n;
for (int j=0; j<2; j++)
{for (int i=1; i<n; i++)
{StringGrid1->Cells [j] [i] =""; }}
}
// ---------------------------------------------------------------------------
void __fastcall TForm1:: Button1Click (TObject *Sender)
{
for (int i=0; i<n; i++)
{array [i] =wind (random (360),random (250));
StringGrid1->Cells [0] [i+1] =array [i]. ShowDirect ();
StringGrid1->Cells [1] [i+1] =array [i]. ShowSpeed (); }