Guest User

Untitled

a guest
Jan 23rd, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. float a=1.2224456f;//给float变量定义
  5. double b=1.2224454;//给double 变量定义
  6. printf("%f\n%lf\n",a,b);//输出
  7. return 0;
Add Comment
Please, Sign In to add comment