首页 > 其他分享 >实验2

实验2

时间:2024-10-13 12:10:33浏览次数:1  
标签:%. int printf p1 实验 ans include

源代码1:

#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;
} 

截图1:

问题1:

1:随机生成N1至N2中的一个数

2:随机生成1至N3中的一个数

3:随机生成学号

 

源代码2:

 1 #include<math.h>
 2 
 3 int main(){
 4     double a,b,c;
 5     double delta,p1,p2;  //用于保存中间计算结果
 6     

 7     while(scanf("%lf%lf%lf",&a,&b,&c) != EOF){
 8         if(a==0){
 9             printf("a = 0,invalid input\n");
10             continue;
11         }
12         
13         delta = b*b-4*a*c;
14         p1 = -b/2/a;
15         p2 = sqrt(fabs(delta))/2/a;
16     
17         if(delta == 0)
18             printf("x1 = x2 = %.2g\n",p1);
19         else if(delta>0)
20             printf("x1 = %.2g,x2 = %.2g\n",p1+p2,p1-p2);
21         else{
22             printf("x1 = %.2g + %.2gi,",p1,p2);
23             printf("x2 = %.2g - %.2gi\n",p1,p2);
24         }         
25     }
26     
27     return 0;
28 }

截图2:

 

 

源代码3:

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

int main(){
    char ans;    
    while(scanf("%c",&ans)!=EOF){
        while (getchar()!='\n');
        
        if(ans =='r'){
            printf("stop!\n");
        }
        else if(ans == 'g'){
            printf("go go go\n");
        }
        else if(ans == 'y'){
            printf("wait a minute\n");
        }
        else{
            printf("something must be wrong\n");
        }
    }
    return 0;
        
}

截图3:

 

源代码4:

#include<stdio.h>

int main(){
    double expense,min,max,total;
    expense =0;
    min=20000;
    max=0;
    total=0;    

    
    while (scanf("%lf",&expense)!=EOF){
    if(expense==-1)
    break;
    if(expense<min)
    min = expense;
    else if(expense>max)
    max = expense;
    total+=expense;}
    
    
    
    printf("今日累计消费总额:%.1lf\n",total);
    printf("今日最高一笔开销:%.1lf\n",max);
    printf("今日最低一笔开销: %.1lf\n",min);
    
    return 0;
}

截图4:

 

源代码5:

#include<stdio.h>
int main(){
    int a,b,c;
    
    while(scanf("%d %d %d",&a,&b,&c)!=EOF) 
        if(a+b<=c||a+c<=b||b+c<=a)
        printf("不能构成三角形\n"); 
        else{
        if((a*a+b*b==c*c)||(a*a+c*c==b*b)||(b*b+c*c==a*a))
        printf("直角三角形\n");
        else if(a==b&&b==c)
        printf("等边三角形\n");
        else if(a==b||a==c||b==c)
        printf("等腰三角形\n");
         
        else
            printf("普通三角形\n");    
        
        }
        return 0;             
}

截图5:

 

源代码6:

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

int main(){
    srand(time(NULL));
    int n=0;
    int ans;
    int date = rand()%(5-1+1)+1;
    printf("猜猜2024年11月哪一天会是你的lucky day\n");
    printf("开始喽,你有三次机会,猜吧(1~30):");
    
    while(scanf("%d", &date)!=EOF){
        if(ans==date){
            printf("哇,猜中了\n");
            break;
            }
        if(ans>date){
            printf("你猜的日期晚了,你的lucky day在前面哦\n");
            n++;
            }
        else if(ans<date){
            printf("你猜的日期早了,你的lucky day还没到呢\n");
            n++;
            }
        if(n==3){
            printf("次数用光啦,偷偷告诉你,11月你的lucky day是%d号\n",date);
            break;
            }
        }
    return 0;
    }

 

截图6:

 

标签:%.,int,printf,p1,实验,ans,include
From: https://www.cnblogs.com/yql2024/p/18456812

相关文章

  • 实验1 现代C++编程初体验
    实验任务1:代码:1#include<iostream>2#include<string>3#include<vector>4#include<algorithm>56usingnamespacestd;7template<typenameT>8voidoutput(constT&c);9voidtest1();10voidtest2();11vo......
  • 实验2
    点击查看代码#include<stdio.h>#include<stdlib.h>#include<time.h>#defineN5#defineN1397#defineN2476#defineN321intmain(){intcnt;intrandom_major,random_no;srand(time(NULL));//以当前系统时间作为随机种子cnt=......
  • 实验2
    任务1 1#include<stdio.h>2#include<stdlib.h>3#include<math.h>45#defineN56#defineN13977#defineN24768#defineN321910intmain(){11intcnt;12intrandom_major,random_no;1314srand(time......
  • VLAN-IP实验
    需求:1.PC1和PC3所在接口为access接口;属于VLAN2PC2-4-5-6处于同一网段:其中PC2可以访间Pc4-5-6PC4可以访间Pc5不能访间PC6Pc5不能访问Pc63.PC1-Pc3---192.168.0.024与PC2-4-5-6不在一个网段--192.168.1.0244.所有Pc均使用DHcp禁取IP地址,且PC1可以正常访间Pc2-4-5-6第一......
  • 实验2
    实验1代码:1#include<stdio.h>2#include<stdlib.h>3#include<time.h>45#defineN56#defineN13977#defineN24768#defineN321910intmain()11{12intcnt;13intrandom_major,random_no;14srand(time(N......
  • 实验2
    #include<stdio.h>#include<malloc.h>#defineSIZE100#defineINCREMENT_SIZE10#defineTRUE1#defineFALSE-1#defineOK1#defineERROR-1typedefintStatus;typedefintElemType;typedefstructLNode{ElemTypedata;structLNode*next;}LNode,*LLi......
  • 实验项目3 自定义路由转换器
    实验目的了解Django处理HTTP请求的流程。掌握路由转换器的用法。掌握如何定义和使用自定义路由转换器。实验内容操作1 创建Django项目chapter02(先进入之前创建的虚拟环境(python3.7、有Django))操作2 在项目chapter02中创建应用app01(应用需要激活应用并分配根路由、创建子......
  • 实验1
    任务1:task1.cpp1//现代C++标准库、算法库体验2//本例用到以下内容:3//1.字符串string,动态数组容器类vector、迭代器4//2.算法库:反转元素次序、旋转元素5//3.函数模板、const引用作为形参67#include<iostream>8#include<string>......
  • 实验2
    task.1#include<stdio.h>#include<stdio.h>#include<time.h>#defineN5#defineN1397#defineN2476#defineN321intmain(){intcnt;intrandom_major,random_no;srand(time(NULL));cnt=0;while(c......
  • 实验一 现代C++编程初体验
    case1://现代C++标准库、算法库体验//本例用到以下内容://1.字符串string,动态数组容器类vector、迭代器//2.算法库:反转元素次序、旋转元素//3.函数模板、const引用作为形参#include<iostream>#include<string>#include<vector>#include<algorithm>usi......