实验2

Posted lxxnb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验2相关的知识,希望对你有一定的参考价值。

//ex1.cpp
#include<stdio.h>
int main(){
    int a=5,b=7,c=100,d,e,f;
    
    d=a/b*c;
    e=a*c/b;
    f=c/b*a;
    
    printf("d=%d,e=%d,f=%d
",d,e,f);
    
    return 0;
}

技术图片

//ex2.cpp
#include<stdio.h>
int main(){
    
    int x=1234;
    float f=123.456;
    double m=123.456;
    char ch=a;
    char a[]="Hello,world!";
    int y=3,z=4;
    
    printf("%d %d
",y,z);
    printf("y=%d,z=%d
",y,z);
    printf("%8d,%2d
",x,x);
    printf("%f,%8f,%8.1f,%0.2f,%.2e
",f,f,f,f,f);
    printf("%1f
",m);
    printf("%3c
",ch);
    printf("%s
  %15s
  %10.5s
  %2.5s
  %.3s
",a,a,a,a,a);
    
    return 0;
    
}

技术图片

//ex3.cpp
#include <stdio.h>
int main(){
    double x,y;
    char c1,c2,c3;
    int a1,a2,a3;
    
    scanf("%d%d%d",&a1,&a2,&a3);
    printf("%d,%d,%d
",a1,a2,a3);
    scanf("%c%c%c",&c1,&c2,&c3);
    printf("‘%c‘‘%c‘‘%c‘
",c1,c2,c3);
    scanf("%lf,%lf",&x,&y);
    printf("%lf,%lf
",x,y);
    
    return 0;
}

技术图片

//ex4.cpp
//判断字符类型
#include <stdio.h>
int main (){
    char x;
    
    x = getchar();
    
    if(x>=0&&x<=9)
    printf("%c是数字字符
",x);
    else if(x>=A&&x<=Z||x>=a&&x<=z)
    printf("%c是英文字母
",x);
    else
    printf("%c是其他字符
",x);
    
    return 0;
} 

技术图片

技术图片

技术图片

//ex5.cpp
#include <stdio.h>
int main(){
    char ans1,ans2;
    
    printf("复习了没?(输入y或Y表示复习了,输入n或N表示没复习):");
    ans1=getchar();
    
    getchar();
    
    printf("
动手敲代码了没?(输入y或Y表示敲了,输入n或N表示木有敲):");
    ans2=getchar();
    
    if((ans1==y||ans1==Y)&&(ans2==y||ans2==Y))
    printf("
罗马不是一天建成的:)
");
    else
    printf("
罗马不是一天毁灭的。。。
");
    
    return 0;
}

技术图片

技术图片

//ex6.cpp
#include <stdio.h>
#include <math.h>
int main(){
    
    int a,n;
    
    scanf("%d",&n);
    a=(1-pow(2,n))/(-1);
    printf("n=%d时,sum=%d",n,a);
    
    return 0;
}

技术图片

以上是关于实验2的主要内容,如果未能解决你的问题,请参考以下文章

JSP 设计教师与学生不同登陆界面(带验证码)

使用 React 实验性中继片段:缺少属性 '"$fragmentRefs"'

[NTUSTISC pwn LAB 7]Return to libc实验(puts泄露libc中gadget片段定位)

2017-2018-2 20179204《网络攻防实践》缓冲区溢出漏洞实验

20165302 缓冲区溢出漏洞实验

第九次作业