实验2
Posted lisiwen-isme
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验2相关的知识,希望对你有一定的参考价值。
#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; }
任务2
#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("%lf ",m); printf("%3c ",ch); printf("%s %15s %10.5s %2.5s %.3s ",a,a,a,a,a); return 0; }
任务3
以上是关于实验2的主要内容,如果未能解决你的问题,请参考以下文章
使用 React 实验性中继片段:缺少属性 '"$fragmentRefs"'
[NTUSTISC pwn LAB 7]Return to libc实验(puts泄露libc中gadget片段定位)