实验2

task1

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

#define N 5
#define N1 397
#define N2 476
#define N3 21

int main() {
    int cnt;
    int random_major, random_no;

    srand(time(NULL));      // 以当前系统时间作为随机种子

    cnt = 0;
    while(cnt < N) {
        random_major = rand() % 2;

        if(random_major) {
            random_no = rand() % (N2 - N1 + 1) + N1;
            printf("20248329%04d\n", random_no);
        }
        else {
            random_no = rand() % N3 + 1;
            printf("20248395%04d\n", random_no);
        }

        cnt++;
    }

    return 0;
}

line 21表示随机生成一个数对80取余,加上N1的结果附值给random-no,最终得到的是一个在397和476间的随机数,line25同理,程序的功能是先随机决定中间4位,然后在给定的范围里随机出后4位。

task2

#include <stdio.h>
#include <math.h>

int main() {
    double a, b, c;
    double delta, p1, p2; // 用于保存中间计算结果

    while(scanf("%lf%lf%lf", &a, &b, &c) != EOF) {
        if(a == 0) {
            printf("a = 0, invalid input\n");
            continue;
        }

        delta = b*b - 4*a*c;
        p1 = -b/2/a;
        p2 = sqrt(fabs(delta))/2/a;

        if(delta == 0)
            printf("x1 = x2 = %.2g\n", p1);
        else if(delta > 0)
            printf("x1 = %.2g, x2 = %.2g\n", p1+p2, p1-p2);
        else {
            printf("x1 = %.2g + %.2gi, ", p1, p2);
            printf("x2 = %.2g - %.2gi\n", p1, p2);
        }
    }

    return 0;
}

 

task3

#include <stdio.h>
int main() 
{
    char c;
    
    while(scanf("%c",&c)!=EOF){
        
        if(c == 'r'){
            printf("stop!\n");
        }
        else if(c == 'g'){
            printf("go go go\n");
        }
        else if(c == 'y'){
            printf("wait a mintue\n");
        }
        else{
        printf("something must be wrong\n");
        }
        getchar();
            
    }
    return 0;
}

 

task4

#include <stdio.h>
int main()
{
    double cost;
    double sum=0,max=0,min=20000;
    printf("输入今日开销,直到-1终止\n");
    while(1){
        scanf("%lf",&cost);
        if(cost!=-1){
            sum=sum+cost;
            if(cost>max){
                max = cost;
            }
            if(cost<min){
                min = cost;
            }
            continue;
        }
        else
        printf("今日累计消费总额:%.1f\n",sum);
        printf("今日最高一笔开销:%.1f\n",max);
        printf("今日最低一笔开销:%.1f\n",min);
    }
    return 0;
}

 

task5

#include <stdio.h>
int main()
{
    int a,b,c;

    while((scanf("%d %d %d",&a,&b,&c)!=EOF)){
    
        if(a+b<=c || b+c<=a || a+c<=b){
            printf("不能构成三角形\n");
        }
        else if(a==b&&b==c){
            printf("等边三角形\n");
        }
        else if((a==b&&b!=c) || (a==c&&b!=c) || (b==c&&a!=c)){
            printf("等腰三角形\n");
        }
        else if(a^2+b^2==c^2 ||b^2+c^2 ==a^2 ||a^2+c^2==b^2){
            printf("直角三角形\n");
        }
        else
        printf("普通三角形\n");
    }
    return 0;
}

 

task6

 

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int d;
    int i=0;
    int randnum;
    printf("猜猜2024年11月哪一天会是你的luckyday\n");
    randnum=rand()%30+1;
    printf("开始喽,你有三次机会,猜吧(1~30):"); 
    
    while(i<3){
        scanf("%d",&d);
    if(d==randnum){
        printf("哇,猜中了");
        break; 
    }
    else if(d<randnum){
        printf("你猜的日期早了,你的luckyday还没到呢\n");
    }
    else if(d>randnum){
        printf("你猜的日期晚了,你的luckyday在前面哦\n");
        
        }
    if (i<2){
    printf("再猜(1~30):");
    }
        i++;
    }
    if (i==3){
    printf("次数用光了,偷偷告诉你,11月你的luckyday是%d号",randnum);
}
    return 0;
}

 

 

实验总结:完成这样一份实验真花了好久,每次遇到一个问题都要花上很长时间解决,但也同时掌握一个新知识点,颇有收获。

posted @ 2024-10-11 14:20  202483950014  阅读(7)  评论(0编辑  收藏  举报