C++ Computers & Technology C++ – Count to 10 Posted on 2016-07-292018-10-01 by ryan Just checking out C++ // C++_count.cpp : counts to 10//#include using namespace std;int main(){ int i = 0; while (i <= 10) { cout << i << endl; ++i; } return 0;} Related Share