#include <iostream> using namespace std; int main() { double x; //cout<<"Please input a float number x which extends between 0 and 2 and has 6 numbers behind the dot"<<endl; cin>>x; if (x<0 || x>2) cout<<"Illegal Input"<<endl; else cout&l...