#include using namespace std;int main(){ int i; for(i=0; i<10; i++) cout << static_cast (i) / 3 << " "; return 0;} 0 0.333333 0.666667 1 1.33333 1.66667 2 2.33333 2.66667 3 "