1. 程式人生 > >【Henu ACM Round #13 A】 Hulk

【Henu ACM Round #13 A】 Hulk

div ref urn pre color i++ href pac bits

【鏈接】 我是鏈接,點我呀:)
【題意】


在這裏輸入題意

【題解】


模擬。

【代碼】

#include <bits/stdc++.h>
using namespace std;

int main(){
    #ifdef LOCAL_DEFINE
        freopen("rush_in.txt", "r", stdin);
    #endif
    ios::sync_with_stdio(0),cin.tie(0);
    int n;
    cin >> n;
    cout <<"I hate "
; for (int i= 2;i <= n;i++) if ( !(i&1)){ cout <<"that I love "; }else{ cout <<"that I hate "; } cout <<"it"<<endl; return 0; }

【Henu ACM Round #13 A】 Hulk