This commit is contained in:
2025-11-30 01:51:19 +03:00
commit 37237f67f8
12 changed files with 191 additions and 0 deletions

13
limits.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include <iostream>
#include <climits>
using namespace std;
int main (void) {
cout << INT_MAX << endl;
cout << INT_MIN << endl;
return 0;
}