1、函數名: settime
成都創新互聯-專業網站定制、快速模板網站建設、高性價比鞏義網站開發、企業建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式鞏義網站制作公司更省心,省錢,快速模板網站建設找我們,業務覆蓋鞏義地區。費用合理售后完善,十多年實體公司更值得信賴。
功 能: 設置系統時間
原型:void settime
2、例程:
#include?stdio.h
#include?dos.h
int?main(void)
{
struct?time?t;
gettime(t);
printf("The?current?minute?is:?%d\n",?t.ti_min);
printf("The?current?hour?is:?%d\n",?t.ti_hour);
printf("The?current?hundredth?of?a?second?is:?%d\n",?t.ti_hund);
printf("The?current?second?is:?%d\n",?t.ti_sec);
/*?Add?one?to?the?minutes?struct?element?and?then?call?settime?*/
t.ti_min++;
settime(t);?//設置系統時間
return?0;
}
函數名: setfillstyle
功 能: 設置填充模式和顏色
用 法: void far setfillstyle(int pattern, int color);
程序例:
#include graphics.h
#include stdlib.h
#include string.h
#include stdio.h
#include conio.h
/* the names of the fill styles supported */
char *fname[] = { "EMPTY_FILL",
"SOLID_FILL",
"LINE_FILL",
"LTSLASH_FILL",
"SLASH_FILL",
"BKSLASH_FILL",
"LTBKSLASH_FILL",
"HATCH_FILL",
"XHATCH_FILL",
"INTERLEAVE_FILL",
"WIDE_DOT_FILL",
"CLOSE_DOT_FILL",
"USER_FILL"
};
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int style, midx, midy;
char stylestr[40];
/* initialize graphics and local variables */
initgraph(gdriver, gmode, "");
/* read result of initialization */
errorcode = graphresult();
if (errorcode != grOk) /* an error occurred */
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* terminate with an error code */
}
midx = getmaxx() / 2;
midy = getmaxy() / 2;
for (style = EMPTY_FILL; style USER_FILL; style++)
{
/* select the fill style */
setfillstyle(style, getmaxcolor());
/* convert style into a string */
strcpy(stylestr, fname[style]);
/* fill a bar */
bar3d(0, 0, midx-10, midy, 0, 0);
/* output a message */
outtextxy(midx, midy, stylestr);
/* wait for a key */
getch();
cleardevice();
}
/* clean up */
getch();
closegraph();
return 0;
}
顏色填充:
1)SOLID_FILL 單色實填充
2)LINE_FILL 用“-”填充
3)HATCH_FILL 用方網格填充
4)XHATCH_FILL 用斜方格填充
5)WIDE_DOT_FILL用稀疏點填充
6)CLOSE_DOT_FILL用密集點填充
函數名: setlinestyle
功 能: 設置當前畫線寬度和類型。
用 法: void far setlinestyle(int linestyle, unsigned pattern,int width);
linestyle為整數型,用來定義所畫直線類型。
pattern為無符號整數型,該參數在需要用戶自定義線型時使用 ,如果是使用系統預定義的線型則參數取0值 。
width為整數型,用來指定所畫直線的粗細
linestyle是線條樣式。可選如下值:
數值 英文說明 中文說明
0 SOLID_LINE 實心線
1 DOTTED_LINE 點線
2 CENTER_LINE 中心線
3 DASHED_LINE 斷續線
4 USERBIT_LINE 用戶自定義線
pattern和USERBIT_LINE配合使用。以16位數值代表線條,一位代表一點。
width:線條的寬度,可選值1(NORM_WIDTH)和3(THICK_WIDTH)。
新聞標題:c語言中函數名加set c語言函數名字
當前網址:http://m.newbst.com/article22/doghicc.html
成都網站建設公司_創新互聯,為您提供網頁設計公司、企業建站、自適應網站、定制開發、網站設計、微信小程序
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯