1. 程式人生 > 程式設計 >c# 播放聲音的四種方法

c# 播放聲音的四種方法

實驗四

實驗任務一、

// 一元二次方程求解(函式實現方式)
// 重複執行, 直到按下Ctrl+Z結束
#include <math.h>
#include <stdio.h>
// 函式宣告
void solve(double a, double b, double c);
// 主函式
int main()
{
    double a, b, c;
    printf("Enter a, b, c: ");
    while(scanf("%lf%lf%lf", &a, &b, &c) != EOF)
    {
        solve(a, b, c); 
// 函式呼叫 printf("Enter a, b, c: "); } return 0; } // 函式定義 // 功能:求解一元二次方程,列印輸出結果 // 形式引數:a,b,c為一元二次方程係數 void solve(double a, double b, double c) { double x1, x2; double delta, real, imag; if(a == 0) printf("not quadratic equation.\n"); else { delta = b*b - 4
*a*c; if(delta >= 0) { x1 = (-b + sqrt(delta)) / (2*a); x2 = (-b - sqrt(delta)) / (2*a); printf("x1 = %f, x2 = %f\n", x1, x2); } else { real = -b/(2*a); imag = sqrt(-delta) / (2*a); printf(
"x1 = %f + %fi, x2 = %f - %fi\n", real, imag, real, imag); } } }

實驗任務二、

// 利用區域性static變數計算階乘
#include <stdio.h>
long long fac(int n); // 函式宣告

int main() { int i,n; printf("Enter n: "); scanf("%d", &n); for(i=1; i<=n; ++i) printf("%d! = %lld\n", i, fac(i)); return 0; } // 函式定義 long long fac(int n) { static long long p = 1; printf("%lld\n",p); p = p*n; return p; }

實驗任務三、

//尋找兩個整數之間的所有素數(包括這兩個整數),把結果儲存在陣列bb中,函式返回素數的個數。
// 例如,輸入6和21,則輸出為:7 11 13 17 19。
#include <stdio.h>
#define N 1000
int fun(int n,int m,int bb[N])
{
    int i,j,k=0,flag;
    for(j=n;j<=m;j++)
    {
        flag=1;//錯誤是在這裡打了int bb[k];
        for(i=2;i<j;i++)
        {
            
        if(j%i==0)
        {
            flag=0;
            break;
        }
        }
        if(flag==1)
            bb[k++]=j;
    }
    return k;
}
int main()
{
    int n=0,m=0,i,k,bb[N];
    scanf("%d",&n);
    scanf("%d",&m);
    for(i=0;i<m-n;i++)
    bb[i]=0;
    k=fun(n,m,bb);
    for(i=0;i<k;i++)
    printf("%4d",bb[i]);
    return 0;
}

實驗任務四、

#include <stdio.h>
long long fun(int n);// 函式宣告
int main()
{
    int n;
    long long f;
    while(scanf("%d", &n) != EOF)
    {
        f = fun(n);// 函式呼叫
        printf("n = %d, f = %lld\n", n, f);
    }
    return 0;
}
// 函式定義
long long fun(int n)
{
    int a,b=n,c=1;
    for(a=0;a<b;a++)
    {
        c=c*2;
    }
    c=c-1;
    return c;
}

實驗任務五、

#include <stdio.h>
void draw(int n, char symbol); // 函式宣告
int main()
{
    int n;
    char symbol;
    while(scanf("%d %c", &n, &symbol) != EOF)
    {
        draw(n, symbol); // 函式呼叫
        printf("\n");
    }
    return 0;
}
// 函式定義
void draw(int n,char symbol)
{
    int a,b=n,c,d,e=n-1,f=1;
    char h=symbol;
    for(c=1;b>=c;c++)
    {
        for(d=1;d<=e;d++)
        printf("\t");
        for(a=1;a<=f;a++)
        printf("%c\t",h);
        printf("\n");
        e--;
        f++,f++;
    }
    
}