使用道具 举报
最初由 david yang 发布 那请问有什么同样功能的函数可以让我接受一个从键盘输入的字符??? #include<iostream.h> #include<conio.h> void main() { cout<<"lease input the b key to hear a bell.\n"; char ch=getche(); if(ch=='b') cout<<'\a'; else if (ch=='\n') cout<<"what a boring select on...\n"; else cout<<"bye!\n"; }
最初由 david yang 发布 学习c++好长时间了,有个问题一直不明白。 float f=3.5; int n=6; long k=21; double ss=f*n+k/2; 首先应该将f(float型)和 n(int 型)转换成double 型,结果为什么是21而不是21.0呢? double 不是双精度型的吗????
本版积分规则 发表回复 回帖后跳转到最后一页