LoginSignup
0
0

More than 1 year has passed since last update.

"再帰関数のO川R法です.スゥ…「" itakogei(); "」"

Last updated at Posted at 2023-03-04
itakogei.cpp
#include <iostream>
using namespace std;

void itakogei(){
    cout << "再帰関数のO川R法です.スゥ…「";
    itakogei();
    cout << "」" << endl;
}
int main(void){
    itakogei();
}
0
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0