Assignments » Flow Of Control » Set 2 » Solution 1
Source Code:
#include<iostream> using namespace std; int main() { int i=1; while(i<=10) { cout<<i<<"\n"; i++; } return 0; }
#include<iostream> using namespace std; int main() { int i=1; while(i<=10) { cout<<i<<"\n"; i++; } return 0; }
The Output Is:
1
2
3
4
5
6
7
8
9
10
Course Outline BSIT 2 year Program First Semester Outline Second Semester Outline Third Semester Outline ...
Post a Comment