小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

經(jīng)典C語言程序設(shè)計100例21-30

 一曲離殤醉 2011-03-22
C語言

經(jīng)典C語言程序設(shè)計100例31-40

【程序31】
題目:請輸入星期幾的第一個字母來判斷一下是星期幾,如果第一個字母一樣,則繼續(xù)
    判斷第二個字母。
1.程序分析:用情況語句比較好,如果第一個字母一樣,則判斷用情況語句或if語句判斷第二個字母。
2.程序源代碼:
#include <stdio.h>
void main()
{
char letter;
printf("please input the first letter of someday\n");
while ((letter=getch())!='Y')/*當(dāng)所按字母為Y時才結(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");
   }
  }
}
-----------------------------------------------------------------------------
【程序32】
題目:Press any key to change color, do you want to try it. Please hurry up!
1.程序分析:            
2.程序源代碼:
#include <conio.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>
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");
}
-----------------------------------------------------------------------------
【程序34】
題目:練習(xí)函數(shù)調(diào)用
1. 程序分析:
2.程序源代碼:
#include <stdio.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ù)*/
}
-----------------------------------------------------------------------------
【程序35】
題目:文本顏色設(shè)置
1.程序分析:
2.程序源代碼:
#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");
}
-----------------------------------------------------------------------------
【程序36】
題目:求100之內(nèi)的素數(shù)   
1.程序分析:
2.程序源代碼:
#include <stdio.h>
#include "math.h"
#define N 101
main()
{
int i,j,line,a[N];
for(i=2;i<N;i++) a[i]=i;
for(i=2;i<sqrt(N);i++)
  for(j=i+1;j<N;j++)
  {
   if(a[i]!=0&&a[j]!=0)
   if(a[j]%a[i]==0)
   a[j]=0;}
printf("\n");
for(i=2,line=0;i<N;i++)
{
  if(a[i]!=0)
  {printf("%5d",a[i]);
  line++;}
  if(line==10)
  {printf("\n");
line=0;}
}
}
-----------------------------------------------------------------------------
【程序37】
題目:對10個數(shù)進(jìn)行排序
1.程序分析:可以利用選擇法,即從后9個比較過程中,選擇一個最小的與第一個元素交換,
       下次類推,即用第二個元素與后8個進(jìn)行比較,并進(jìn)行交換。       
2.程序源代碼:
#define N 10
main()
{int i,j,min,tem,a[N];
/*input data*/
printf("please input ten num:\n");
for(i=0;i<N;i++)
{
printf("a[%d]=",i);
scanf("%d",&a[i]);}
printf("\n");
for(i=0;i<N;i++)
printf("%5d",a[i]);
printf("\n");
/*sort ten num*/
for(i=0;i<N-1;i++)
{min=i;
for(j=i+1;j<N;j++)
if(a[min]>a[j]) min=j;
tem=a[i];
a[i]=a[min];
a[min]=tem;
}
/*output data*/
printf("After sorted \n");
for(i=0;i<N;i++)
printf("%5d",a[i]);
}
-----------------------------------------------------------------------------
【程序38】
題目:求一個3*3矩陣對角線元素之和
1.程序分析:利用雙重for循環(huán)控制輸入二維數(shù)組,再將a[i][i]累加后輸出。
2.程序源代碼:
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[i][j]);
for(i=0;i<3;i++)
  sum=sum+a[i][i];
printf("duijiaoxian he is %6.2f",sum);
}
-----------------------------------------------------------------------------
【程序39】
題目:有一個已經(jīng)排好序的數(shù)組?,F(xiàn)輸入一個數(shù),要求按原來的規(guī)律將它插入數(shù)組中。
1. 程序分析:首先判斷此數(shù)是否大于最后一個數(shù),然后再考慮插入中間的數(shù)的情況,插入后
      此元素之后的數(shù),依次后移一個位置。
2.程序源代碼:
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[i]);
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[i]>number)
    {temp1=a[i];
     a[i]=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[i]);
}
-----------------------------------------------------------------------------
【程序40】
題目:將一個數(shù)組逆序輸出。
1.程序分析:用第一個與最后一個交換。
2.程序源代碼:
#define N 5
main()
{ int a[N]={9,6,5,4,1},i,temp;
  printf("\n original array:\n");
  for(i=0;i<N;i++)
  printf("%4d",a[i]);
  for(i=0;i<N/2;i++)
  {temp=a[i];
   a[i]=a[N-i-1];
   a[N-i-1]=temp;
  }
printf("\n sorted array:\n");
for(i=0;i<N;i++)
  printf("%4d",a[i]);
}

 

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多