5_8.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //5_8
  2. #include <iostream.h>
  3. void display(double d){ cout <<"A double: " <<d <<endl; }
  4. void display(int i){ cout <<"A int: " <<i <<endl; }
  5. void display(char c){ cout <<"A char: " <<c <<endl; }
  6. void main()
  7. {
  8.   double a=100.0;
  9.   float f=1.0;
  10.   int n=120;
  11.   char ch='c';
  12.   short s=50;
  13.   display(a);
  14.   display(f);
  15.   display(n);
  16.   display(ch);
  17.   display(s);
  18. }