博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C语言100个算法经典例题(四)
阅读量:6462 次
发布时间:2019-06-23

本文共 4465 字,大约阅读时间需要 14 分钟。

【程序31】输入星期几的第一个字母来判断一下是星期几。

题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。
1.程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if 语句判断第二个字母。

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#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。
题目:Press any key to change color, do you want to try it. Please hurry up!
1.程序分析:

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#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.程序分析:

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#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. 程序分析:

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#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.程序分析:

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#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(); }

==============================================================

【程序36】题目:求100 之内的素数
1.程序分析:

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#include "stdio.h" #include "math.h" #define N 101 main() {
int i,j,line,a[N]; for(i=2;i

==============================================================

【程序37】题目:对10 个数进行排序
1.程序分析:可以利用选择法,即从后9 个比较过程中,选择一个最小的与第一个元素交换,
下次类推,即用第二个元素与后8 个进行比较,并进行交换。

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#include "stdio.h" #include "conio.h" #define N 10 main() {
int i,j,min,tem,a[N]; /*input data*/ printf("please input ten num:\n"); for(i=0;i
a[j]) min=j; tem=a; a=a ; a =tem; } /*output data*/ printf("After sorted \n"); for(i=0;i

==============================================================

【程序38】题目:求一个3*3 矩阵对角线元素之和
1.程序分析:利用双重for 循环控制输入二维数组,再将a 累加后输出。

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#include "stdio.h" #include "conio.h" /* 如果使用的是TC 系列编译器则可能需要添加下句 */ static void dummyfloat(float *x){ float y; dummyfloat(&y);} main() {
float a[3][3],sum=0; int i,j; printf("please input rectangle element:\n"); for(i=0;i<3;i++) for(j=0;j<3;j++) scanf("%f",&a[j]); for(i=0;i<3;i++) sum=sum+a; printf("duijiaoxian he is %6.2f",sum); getch(); }

==============================================================

【程序39】数组,插入数据。
题目:有一个已经排好序的数组。现输入一个数,要求按原来的规律将它插入数组中。
1. 程序分析:首先判断此数是否大于最后一个数,然后再考虑插入中间的数的情况,插入后
此元素之后的数,依次后移一个位置。

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#include "stdio.h" #include "conio.h" main() {
int a[11]={
1,4,6,9,13,16,19,28,40,100}; int temp1,temp2,number,end,i,j; printf("original array is:\n"); for(i=0;i<10;i++) printf("%5d",a); printf("\n"); printf("insert a new number:"); scanf("%d",&number); end=a[9]; if(number>end) a[10]=number; else {
for(i=0;i<10;i++) {
if(a>number) {
temp1=a; a=number; for(j=i+1;j<11;j++) {
temp2=a[j]; a[j]=temp1; temp1=temp2; } break; } } } for(i=0;i<11;i++) printf("%6d",a); getch(); }

==============================================================

【程序40】题目:将一个数组逆序输出。
1.程序分析:用第一个与最后一个交换。

ContractedBlock.gif
ExpandedBlockStart.gif
程序源代码:
#include "stdio.h" #include "conio.h" #define N 5 main() {
int a[N]={
9,6,5,4,1},i,temp; printf("\n original array:\n"); for(i=0;i

转载于:https://www.cnblogs.com/jiangzm/archive/2011/08/22/2149143.html

你可能感兴趣的文章
win10 动态磁盘 linux,Win10系统基本磁盘变成动态磁盘了咋办?
查看>>
linux停在OK界面,烧写Linux Kernel uImage后,停在Uncompressing Linux... done, booting the kernel....
查看>>
在linux上获得线程id的方法,在linux上获得线程id的方法
查看>>
linux 挂载 ftp iso,Linux下用curlftpfs挂载FTP服务器 [CentOS]
查看>>
cts测试linux指令skip,CTS测试命令详细
查看>>
linux 窗口居中,OpenGL设置窗口居中显示方法
查看>>
linux 连网vim安装,Ubuntu下安装Gvim及添加菜单项目[多图]
查看>>
c语言字符串getline,如何使用std :: getline()将文本文件读入C中的字符串数组?
查看>>
山科c语言考试题库,山科c语言考试重点.doc
查看>>
c语言实例 魔术师的猜牌术(1),C语言实例 魔术师的猜牌术(1)
查看>>
c语言 蛇形矩阵,蛇形矩阵输出是要怎么写代码,感觉没有眉目啊,大佬能说一下思想吗...
查看>>
c语言假设有21根火柴棍,10道火柴棍趣味智力题,据说全对的都是天才!
查看>>
国二考vb和c语言,全国计算机二级《VB》练习题及答案(2)
查看>>
c语言双链表的插入和删除,关于....多向循环双链表的插入和删除技术点,求大神帮破...
查看>>
c#语言结构体定义,深入解析C#编程中struct所定义的结构
查看>>
android static 函数调用吗,无法对非静态方法进行静态引用(Android getApplicationContext())...
查看>>
android百度地图画圆,使用百度地图Api,在地图上画圆形区域
查看>>
小米android n 分屏,官方确认!这些小米手机都支持分屏
查看>>
html动态图片怎么设背景,微信8.0状态背景视频怎么设置?状态视频动态背景图设置教程[多图]...
查看>>
html禁用ctrl健,保护网站版权JS代码 禁止 Ctrl和S、F12控制台、保存页面、复制文字...
查看>>