【程序31】 題目:請輸入星期幾的第一個字母來判斷一下是星期幾,如果第一個字母一樣,則繼續判斷第二個字母。
1.程序分析:用情況語句比較好,如果第一個字母一樣,則判斷用情況語句或if語句判斷第二個字母。
2.程序源代碼:
#include "stdio.h"
#include "conio.h"
void main(){
char letter;
printf("please input the first letter of someday\n");
while((letter=getch())!='Y')/*當所按字母為Y時才結束*/
{
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);/*設置文本的背景顏色*/
cprintf("This is color %d\r\n", color);
cprintf("Press any key to continue\r\n");
getch();/*輸入字符看不見*/
}
}
——————————————————————————————————————
【程序33】 題目:學習gotoxy()與clrscr()函數
1.程序分析:
2.程序源代碼:
#include "conio.h"
#include "stdio.h"void main(void){
clrscr();/*清屏函數*/
textbackground(2);
gotoxy(1, 5);/*定位函數*/
cprintf("Output at row 5 column 1\n");
textbackground(3);
gotoxy(20, 10);
cprintf("Output at row 10 column 20\n");
getch();
}
——————————————————————————————————————
【程序34】 題目:練習函數調用
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();/*調用此函數*/}void main(void){
three_hellos();/*調用此函數*/
getch();
}
——————————————————————————————————————
【程序35】 題目:文本顏色設置
1.程序分析:
2.程序源代碼:
#include "stdio.h"
#include "conio.h"
void main(void){
int color;
for (color = 1; color < 16; color++)
{
textcolor(color);/*設置文本顏色*/
cprintf("This is color %d\r\n", color);
}
textcolor(128 + 15);
cprintf("This is blinking\r\n");
getch();
}
——————————————————————————————————————
更多關于“物聯網培訓”的問題,歡迎咨詢千鋒教育在線名師。千鋒教育多年辦學,課程大綱緊跟企業需求,更科學更嚴謹,每年培養泛IT人才近2萬人。不論你是零基礎還是想提升,都可以找到適合的班型,千鋒教育隨時歡迎你來試聽。