西西軟件下載最安全的下載網(wǎng)站、值得信賴的軟件下載站!

首頁編程開發(fā)VC|VC++ → 很好的C程序代碼實例

很好的C程序代碼實例

相關(guān)軟件相關(guān)文章發(fā)表評論 來源:西西整理時間:2012/12/24 15:56:50字體大。A-A+

作者:西西點擊:0次評論:0次標簽: C程序

  • 類型:源碼相關(guān)大小:1.8M語言:中文 評分:7.5
  • 標簽:
立即下載
4 頁 【程序31】-【程序40】

【程序31】
題目:請輸入星期幾的第一個字母來判斷一下是星期幾,如果第一個字母一樣,則繼續(xù)判斷第二個字母。
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時才結(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");
    }
  }
  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()函數(shù)   
1.程序分析:
2.程序源代碼:
#include "conio.h"
#include "stdio.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");
  getch();
}
==============================================================
【程序34】
題目:練習函數(shù)調(diào)用
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();/*調(diào)用此函數(shù)*/
}
void main(void)
{
  three_hellos();/*調(diào)用此函數(shù)*/
  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();
}
==============================================================
【程序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;
    for(i=2;i<sqrt(N);i++)
      for(j=i+1;j<N;j++)
      {
        if(a!=0&&a[j]!=0)
          if(a[j]%a==0)
            a[j]=0;
      }
  printf("\n");
  for(i=2,line=0;i<N;i++)
  {
    if(a!=0)
    {
      printf("%5d",a);
      line++;
    }
    if(line==10)
    {
      printf("\n");
      line=0;
    }
  }
  getch();
}
==============================================================
【程序37】
題目:對10個數(shù)進行排序
1.程序分析:可以利用選擇法,即從后9個比較過程中,選擇一個最小的與第一個元素交換,下次類推,即用第二個元素與后8個進行比較,并進行交換。        
2.程序源代碼:
#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<N;i++)
  {
    printf("a[%d]=",i);
    scanf("%d",&a);
  }
  printf("\n");
  for(i=0;i<N;i++)
    printf("%5d",a);
  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;
    a=a[min];
    a[min]=tem;
  }
  /*output data*/
  printf("After sorted \n");
  for(i=0;i<N;i++)
  printf("%5d",a);
  getch();
}
==============================================================
【程序38】
題目:求一個3*3矩陣對角線元素之和 
1.程序分析:利用雙重for循環(huán)控制輸入二維數(shù)組,再將a累加后輸出。
2.程序源代碼:
#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】
題目:有一個已經(jīng)排好序的數(shù)組,F(xiàn)輸入一個數(shù),要求按原來的規(guī)律將它插入數(shù)組中。
1. 程序分析:首先判斷此數(shù)是否大于最后一個數(shù),然后再考慮插入中間的數(shù)的情況,插入后此元素之后的數(shù),依次后移一個位置。 
2.程序源代碼:
#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】
題目:將一個數(shù)組逆序輸出。
1.程序分析:用第一個與最后一個交換。
2.程序源代碼:
#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<N;i++)
    printf("%4d",a);
  for(i=0;i<N/2;i++)
  {
    temp=a;
    a=a[N-i-1];
    a[N-i-1]=temp;
  }
  printf("\n sorted array:\n");
  for(i=0;i<N;i++)
    printf("%4d",a);
  getch();
}


  .:.:經(jīng)典c程序100例==41--50:.:. 

    經(jīng)典c程序100例==41--50

    相關(guān)評論

    閱讀本文后您有什么感想? 已有人給出評價!

    • 8 喜歡喜歡
    • 3 頂
    • 1 難過難過
    • 5 囧
    • 3 圍觀圍觀
    • 2 無聊無聊

    熱門評論

    最新評論

    發(fā)表評論 查看所有評論(0)

    昵稱:
    表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
    字數(shù): 0/500 (您的評論需要經(jīng)過審核才能顯示)
    推薦文章

    沒有數(shù)據(jù)

      沒有數(shù)據(jù)
    最新文章
      沒有數(shù)據(jù)