【程式31】
題目:請輸入星期幾的第一個字母來判斷一下是星期幾,如果第一個字母一樣,則繼續
   判斷第二個字母。
1.程式分析:用情況語句比較好,如果第一個字母一樣,則判斷用情況語句或if語句判斷第二個字母。
2.程式源代碼:
#include <stdio.h>    //需輸入大寫的字母
void main()
{
char letter;
printf("please input the first letter of somedayn");
while ((letter=getch())!='Y')/*當所按字母為Y時才結束*/  //不等於Y,執行下面的東東
{ switch (letter)
{case 'S':printf("please input second lettern");
     if((letter=getch())=='a')
      printf("saturdayn");
     else if ((letter=getch())=='u')
         printf("sundayn");
       else printf("data errorn");
     break;
case 'F':printf("fridayn");break;
case 'M':printf("mondayn");break;
case 'T':printf("please input second lettern");
     if((letter=getch())=='u')
      printf("tuesdayn");
     else if ((letter=getch())=='h')
         printf("thursdayn");
       else printf("data errorn");
     break;
case 'W':printf("wednesdayn");break;
default: printf("data errorn");
  }
 }
}
==============================================================
【程式32】
題目:Press any key to change color, do you want to try it. Please hurry up!
1.程式分析:            
2.程式源代碼:
 
#include <conio.h>    //fail,無法complier
void main(void)
{
int color;
for (color = 0; color < 8; color++)
 {
 textbackground(color);/*設置文本的背景顏色*/
 cprintf("This is color %drn", color);
 cprintf("Press any key to continuern");
 getch();/*輸入字元看不見*/
 }
}

==============================================================
【程式33】
題目:學習gotoxy()與clrscr()函數   
1.程式分析:
2.程式源代碼:
#include <conio.h>   //無法辨識cprintf
void main(void)
{
clrscr();/*清屏函數*/
textbackground(2);
gotoxy(1, 5);/*定位函數*/
cprintf("Output at row 5 column 1n");
textbackground(3);
gotoxy(20, 10);
cprintf("Output at row 10 column 20n");
}

==============================================================
【程式34】
題目:練習函數調用
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();/*調用此函數*/
}
void main(void)
{
three_hellos();/*調用此函數*/
}
==============================================================
【程式35】
題目:文本顏色設置
1.程式分析:
2.程式源代碼:
#include
void main(void)
{
int color;
for (color = 1; color < 16; color++)
 {
 textcolor(color);/*設置文本顏色*/
 cprintf("This is color %drn", color);
 }
textcolor(128 + 15);
cprintf("This is blinkingrn");
}
==============================================================
【程式36】
題目:求100之內的素數   
1.程式分析:
2.程式源代碼:
#include
#include "math.h"
#define N 101
main()
{
int i,j,line,a[N];
for(i=2;ifor(i=2;i for(j=i+1;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{
 if(a[i]!=0)
 {printf("%5d",a[i]);
 line++;}
 if(line==10)
 {printf("n");
line=0;}
}
}
==============================================================
【程式37】
題目:對10個數進行排序
1.程式分析:可以利用選擇法,即從後9個比較過程中,選擇一個最小的與第一個元素交換,
      下次類推,即用第二個元素與後8個進行比較,並進行交換。       
2.程式源代碼:
#define N 10
main()
{int i,j,min,tem,a[N];
/*input data*/
printf("please input ten num:n");
for(i=0;i{
printf("a[%d]=",i);
scanf("%d",&a[i]);}
printf("n");
for(i=0;iprintf("%5d",a[i]);
printf("n");
/*sort ten num*/
for(i=0;i{min=i;
for(j=i+1;jif(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;iprintf("%5d",a[i]);
}
==============================================================
【程式38】
題目:求一個3*3矩陣對角線元素之和
1.程式分析:利用雙重for迴圈控制輸入二維陣列,再將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】
題目:有一個已經排好序的陣列。現輸入一個數,要求按原來的規律將它插入陣列中。
1. 程式分析:首先判斷此數是否大於最後一個數,然後再考慮插入中間的數的情況,插入後
     此元素之後的數,依次後移一個位置。
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】
題目:將一個陣列逆序輸出。
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 printf("%4d",a[i]);
 for(i=0;i {temp=a[i];
  a[i]=a[N-i-1];
  a[N-i-1]=temp;
 }
printf("n sorted array:n");
for(i=0;i printf("%4d",a[i]);
}

arrow
arrow
    全站熱搜

    deskwoodss 發表在 痞客邦 留言(0) 人氣()