bsc

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

prac_001.cpp (391B)


      1 /*
      2  * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 18 Jun 2026
      3  * Repo: https://github.com/notamitgamer/bsc
      4  * License: MIT
      5  */
      6 
      7 /* Trying to remember after a year. */
      8 
      9 #include <iostream>
     10 using namespace std;
     11 
     12 int main() {
     13     int n;
     14     cout << "Enter a number: ";
     15     cin >> n;
     16 
     17     for (int i = 1; i <= n; i++) {
     18         cout << i << " ";
     19     }
     20     cout << endl;
     21 
     22     return 0;
     23 }
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror