home
clear breadcrumbs
search
login
 
while loop
#include
using namespace std; int main() { int i = 0; while ( i <= 10) { cout << i << "\n"; i++; } }