memoscan
← all memos

Memo 0x53e09e57…af3db4 on Ethereum

```markup /**************************************************** Programmer's Romance ****************************************************/ #include <iostream> #include <limits> using namespace std; int LIFE_LENGTH = numeric_limits<int>::max(); void loveYouForever(string my_lover_name) { for( int i=0; i<=LIFE_LENGTH; i++ ){ cout << "Dear " << my_lover_name << ", I love U" << endl; } } int main() { string my_lover_name; cout << "My love: " << endl; cin >> my_lover_name; loveYouForever(my_lover_name); return 0; } ```