const

 1 #include<iostream>
 2 using namespace std;
 3 int main()
 4 {
 5     float a,c;
 6     float const b=1.60934;
 7     cin>>a;
 8     c=a/b;
 9     cout<<c<<endl;
10     return 0;
11 }

posted on 2013-12-26 16:27  了发发  阅读(97)  评论(0)    收藏  举报

导航