1.something intended to communicate a particular impression;
made a display of strength
2.something shown to the public;
the museum had many exhibits of oriental art
3.an electronic device that represents information in visual form
4.a visual representation of something
5.behavior that makes your feelings public;
a display of emotion
6.exhibiting openly in public view;
a display of courage
1.to show, make visible or apparent;
The Metropolitan Museum is exhibiting Goya's works this month
2.make clear and visible;
The article revealed the policies of the government
3.attract attention by displaying some body part or posing; of animals
函數(shù)名:display 功能:顯示輸出函數(shù) 用法:void display(); 程序例: #include<iostream.h> template <class k1, class k2> void display(k1 x, k2 y); void main() { char c='h',str[]="ok2002"; int n=100; float x=5.5; double z=1.23456; //兩個參數(shù)類型相同 display(c, char(c+2)); //h j display(x,2*x); //5.5 11 display(n, 2*n); //100 200 display(str, str); //ok2002 ok2002 display(z, 2*z);