二维码
微世推网

扫一扫关注

当前位置: 首页 » 快报资讯 » 今日快报 » 正文

C语言经典100例_31_35

放大字体  缩小字体 发布日期:2022-11-29 14:23:14    作者:郭天龙    浏览次数:136
导读

感觉这里只有题目31 和 题目 34 有用,其他得调颜色得应该绝大部分人用不到(题目 31题目:请输入星期几得第壹个字母来判断一下是星期几,如果第壹个字母一样,则继续判断第二个字母。程序分析:用情况语句比较好,如果第壹个字母一样,则判断用情况语句或if语句判断第二个字母。#includecstdioint main(){char c; while ((

感觉这里只有题目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");}

 
(文/郭天龙)
打赏
免责声明
• 
本文为郭天龙原创作品•作者: 郭天龙。欢迎转载,转载请注明原文出处:http://www.udxd.com/kbzx/show-109566.html 。本文仅代表作者个人观点,本站未对其内容进行核实,请读者仅做参考,如若文中涉及有违公德、触犯法律的内容,一经发现,立即删除,作者需自行承担相应责任。涉及到版权或其他问题,请及时联系我们邮件:weilaitui@qq.com。
 

Copyright©2015-2023 粤公网安备 44030702000869号

粤ICP备16078936号

微信

关注
微信

微信二维码

WAP二维码

客服

联系
客服

联系客服:

24在线QQ: 770665880

客服电话: 020-82301567

E_mail邮箱: weilaitui@qq.com

微信公众号: weishitui

韩瑞 小英 张泽

工作时间:

周一至周五: 08:00 - 24:00

反馈

用户
反馈