感觉这里只有题目31 和 题目 34 有用,其他得调颜色得应该绝大部分人用不到(
题目 31题目:请输入星期几得第壹个字母来判断一下是星期几,如果第壹个字母一样,则继续判断第二个字母。
程序分析:用情况语句比较好,如果第壹个字母一样,则判断用情况语句或if语句判断第二个字母。
#include<cstdio>int main(){ char c; while ((c=getchar())!='Y') { switch (c) { case 'S': printf("please input second letter\n"); if((c=getchar()) == 'a') printf("Saturday\n"); if ((c=getchar())== 'u') printf("Sunday\n"); break; case 'F':printf("Friday\n");break; case 'M':printf("Monday\n");break; case 'T':printf("please input second letter\n"); if((c=getchar())=='u') printf("Tuesday\n"); else if ((c=getchar())=='h') printf("Thursday\n"); break; case 'W':printf("Wednesday\n");break; default: break; } }}
题目 32
题目:Press any key to change color, do you want to try it. Please hurry up!
#include<conio.h>#include<windows.h>#include<cstdio>// 此部分来自: 感谢分享blog.csdn感谢原创分享者/u012133341/article/details/81487802// 这里本人不太理解。 int textbackground(short iColor){ HANDLE hd = GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO csbInfo; GetConsoleScreenBufferInfo(hd, &csbInfo); return SetConsoleTextAttribute(hd, (iColor<<4)|(csbInfo.wAttributes&~0xF0));}int main(){ for(int color = 0;color < 8 ;color++) { textbackground(color); printf("This is color %d\r\n",color); printf("Press any key to continue\n"); getch();//与getchar不同得是,getch可以看不到字符 }}
题目 33
题目:学习gotoxy()与clrscr()函数
#include<cstdio>#include<conio.h>#include<windows.h>// 此部分来自: 感谢分享blog.csdn感谢原创分享者/u012133341/article/details/81487802// 这里本人不太理解。 int textbackground(short iColor){ HANDLE hd = GetStdHandle(STD_OUTPUT_HANDLE); CONSOLE_SCREEN_BUFFER_INFO csbInfo; GetConsoleScreenBufferInfo(hd, &csbInfo); return SetConsoleTextAttribute(hd, (iColor<<4)|(csbInfo.wAttributes&~0xF0));}// 建议读者自行寻求资料。。 这里不打算深究 void gotoxy(int x, int y){ COORD coord; coord.X = x; coord.Y = y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);}int main(){ system("cls");//清屏 gotoxy(1,5); textbackground(3); printf("Output at row 5 col 1\n"); gotoxy(20,10); textbackground(2); printf("Output at row 10 col 20\n");}
题目 34
题目:练习函数调用
#include<cstdio>void output_error()// 函数声明,void类型,蕞后可以加return;{ printf("error!"); return;}int main(){ output_error();//知道怎么调用即可。这里不打算介绍参数 }
题目 35
题目:文本颜色设置
#include<cstdio>#include<windows.h>void textcolor(int color) { HANDLE hOutput = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(hOutput, color);}int main(){ for (int color = 1;color < 16;color++) { textcolor(color); printf("This is color %d\r\n", color); } textcolor(128 + 15); printf("This is blinking\r\n");}