Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to 1 to 100 in C++, without loop and recursion .So let’s go to our topic
#include <iostream> using namespace std; template<int N> class PrintOneToN { public: static void print() { PrintOneToN<N-1>::print(); // Note that this is not recursion cout << N << endl; } }; template<> class PrintOneToN<1> { public: static void print() { cout << 1 << endl; } }; int main() { const int N = 100; PrintOneToN<N>::print();return 0; }
Output:
1
2
3
..
..
98
99
100
Related Post:-
So I hope that you learn about the this program And if you have any more queries about progrmming ,web Devlopment ,tech,computer relegated then feel free to discuss your problem in the comment section.Thank you so much and come back for more updates about Techgsr.co