bsc

Comprehensive codebase and cou...
Log | Files | Refs | Activity | README | LICENSE

root / semester_2 / practice / prac_001.cpp

prac_001.cpp (255B)


      1 /* Trying to remember after a year. */
      2 
      3 #include <iostream>
      4 using namespace std;
      5 
      6 int main() {
      7     int n;
      8     cout << "Enter a number: ";
      9     cin >> n;
     10 
     11     for (int i = 1; i <= n; i++) {
     12         cout << i << " ";
     13     }
     14     cout << endl;
     15 
     16     return 0;
     17 }
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror