關於陣例的問題 |
尚未結案
|
load
一般會員 發表:13 回覆:7 積分:4 註冊:2003-12-31 發送簡訊給我 |
試依照下列的條件設計考生成績分配狀況的條形圖。
(1) 成績共區分為十個等級,從0至9,10至19,20至29,30至39,40至49,
50至59,60至69,70至79,80至89,90至100。
(2) 輸出的形式如下圖所示,一個*號代表二個人,奇數人數時則以進位計算
,同一等級以不超過50人為條件。
(3) 當輸入資料為999時代表資料的完了。
00--09 **
10--19 ****
20--29 ******
30--39 *****
40--49 *********
50--59 *********.****
60--69 *********.*********.**
70--79 *********.******
80--89 ******
90--100 ****
(4)測試用的輸入資料為:
72,81,54,68,75,42,85,60,27,66,79,32,94,6,45,83,67,61,38,65,72,56,
67,15,90,72,67,53,48,79,42,65,72,58,100,75,67,82,52,65,72,45,82,
75,35,75,68,50,12,78 我寫的方式是這樣,請問一下,可以提供資料或方向 void __fastcall TForm1::FormCreate(TObject *Sender)
{
Label1->Caption="00--09";
Label2->Caption="10--19";
Label3->Caption="20--29";
Label4->Caption="30--39";
Label5->Caption="40--49";
Label6->Caption="50--59";
Label7->Caption="60--69";
Label8->Caption="70--79";
Label9->Caption="80--89";
Label10->Caption="90--100"; }
//--------------------------------------------------------------------------- void __fastcall TForm1::Edit1Change(TObject *Sender)
{
int st1,st2,st3,st4,st5,st6,st7,st8,st9,st10;
int Arr[10]={1,2,3,4,5,6,7,8,9,10}; if(Edit1->Text==72,81,54,68,999)
{
Label11->Caption=st1;
} if(Edit1->Text=="exit")
{
Close();
} }
只寫了一半
|
kagaya
中階會員 發表:74 回覆:175 積分:59 註冊:2002-12-28 發送簡訊給我 |
這樣寫應該可以得到每個階段的人數
int score[100]={72,81,54,68,75,42,85,60,27,66,79,32,94,6,45,83,67,61,38,65,72,56, 67,15,90,72,67,53,48,79,42,65,72,58,100,75,67,82,52,65,72,45,82, 75,35,75,68,50,12,78} int total[10]={0,0,0,0,0,0,0,0,0,0}; int j=0; for(int i=0;i<100;i ){ j=ceil(score[i]/10); total[j] ; }
------
KUSO 無處不在 |
axsoft
版主 發表:681 回覆:1056 積分:969 註冊:2002-03-13 發送簡訊給我 |
load您好: 下次作業自己寫喔,下次不可再問學校作業了.僅此一次下不為例
Unit1.H /--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #includeTChart的使用方法取自bruce0211版主的方法 /*生活是一種藝術,用心生活才能享受生活*/發表人 - axsoft 於 2004/01/06 20:16:29 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |