【程序31】 題目:請(qǐng)輸入星期幾的第一個(gè)字母來判斷一下是星期幾,如果第一個(gè)字母一樣,則繼續(xù)判斷第二個(gè)字母。
1.程序分析:用情況語句比較好,如果第一個(gè)字母一樣,則判斷用情況語句或if語句判斷第二個(gè)字母。
2.程序源代碼:
#include "stdio.h"
#include "conio.h"
void main(){
char letter;
printf("please input the first letter of someday\n");
while((letter=getch())!='Y')/*當(dāng)所按字母為Y時(shí)才結(jié)束*/
{
switch (letter)
{
case 'S':printf("please input second letter\n");
if((letter=getch())=='a')
printf("saturday\n");
else if ((letter=getch())=='u')
printf("sunday\n");
else printf("data error\n");
break;
case 'F':printf("friday\n");break;
case 'M':printf("monday\n");break;
case 'T':printf("please input second letter\n");
if((letter=getch())=='u')
printf("tuesday\n");
else if ((letter=getch())=='h')
printf("thursday\n");
else printf("data error\n");
break;
case 'W':printf("wednesday\n");break;
default: printf("data error\n");
}
}
getch();
}
——————————————————————————————————————
【程序32】 題目:Press any key to change color, do you want to try it. Please hurry up!
1.程序分析:
2.程序源代碼:
#include "conio.h"
#include "stdio.h"
void main(void){
int color;
for (color = 0; color < 8; color++)
{
textbackground(color);/*設(shè)置文本的背景顏色*/
cprintf("This is color %d\r\n", color);
cprintf("Press any key to continue\r\n");
getch();/*輸入字符看不見*/
}
}
——————————————————————————————————————
【程序33】 題目:學(xué)習(xí)gotoxy()與clrscr()函數(shù)
1.程序分析:
2.程序源代碼:
#include "conio.h"
#include "stdio.h"void main(void){
clrscr();/*清屏函數(shù)*/
textbackground(2);
gotoxy(1, 5);/*定位函數(shù)*/
cprintf("Output at row 5 column 1\n");
textbackground(3);
gotoxy(20, 10);
cprintf("Output at row 10 column 20\n");
getch();
}
——————————————————————————————————————
【程序34】 題目:練習(xí)函數(shù)調(diào)用
1. 程序分析:
2.程序源代碼:
#include "stdio.h"
#include "conio.h"
void hello_world(void){
printf("Hello, world!\n");}void three_hellos(void){
int counter;
for (counter = 1; counter <= 3; counter++)
hello_world();/*調(diào)用此函數(shù)*/}void main(void){
three_hellos();/*調(diào)用此函數(shù)*/
getch();
}
——————————————————————————————————————
【程序35】 題目:文本顏色設(shè)置
1.程序分析:
2.程序源代碼:
#include "stdio.h"
#include "conio.h"
void main(void){
int color;
for (color = 1; color < 16; color++)
{
textcolor(color);/*設(shè)置文本顏色*/
cprintf("This is color %d\r\n", color);
}
textcolor(128 + 15);
cprintf("This is blinking\r\n");
getch();
}
——————————————————————————————————————
更多關(guān)于“物聯(lián)網(wǎng)培訓(xùn)”的問題,歡迎咨詢千鋒教育在線名師。千鋒教育多年辦學(xué),課程大綱緊跟企業(yè)需求,更科學(xué)更嚴(yán)謹(jǐn),每年培養(yǎng)泛IT人才近2萬人。不論你是零基礎(chǔ)還是想提升,都可以找到適合的班型,千鋒教育隨時(shí)歡迎你來試聽。