首页 > 其他 > 详细

【Henu ACM Round #13 A】 Hulk

时间:2018-01-23 12:51:14      阅读:251      评论:0      收藏:0      [点我收藏+]

【链接】 我是链接,点我呀:)
【题意】


在这里输入题意

【题解】


模拟。

【代码】

#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

原文:https://www.cnblogs.com/AWCXV/p/8334999.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!