zoukankan      html  css  js  c++  java
  • CodeForces 705A Hulk

    水题。

    #pragma comment(linker, "/STACK:1024000000,1024000000")
    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<algorithm>
    #include<vector>
    #include<map>
    #include<set>
    #include<queue>
    #include<stack>
    #include<iostream>
    using namespace std;
    typedef long long LL;
    const double pi=acos(-1.0),eps=1e-8;
    void File()
    {
        freopen("D:\in.txt","r",stdin);
        freopen("D:\out.txt","w",stdout);
    }
    inline int read()
    {
        char c = getchar();  while(!isdigit(c)) c = getchar();
        int x = 0;
        while(isdigit(c)) { x = x * 10 + c - '0'; c = getchar(); }
        return x;
    }
    
    int main()
    {
        int n;scanf("%d",&n);
        if(n==1) { printf("I hate it
    "); return 0; }
        if(n==2) { printf("I hate that I love it
    "); return 0; }
        for(int i=1;i<=n;i++)
        {
            if(i%2==1) printf("I hate ");
            else printf("I love ");
            if(i<n) printf("that ");
        }
        printf("it
    ");
        return 0;
    }
  • 相关阅读:
    快速幂 快速乘法
    扩展欧几里得学习笔记
    求逆序数数目(树状数组+离散化)
    隐式图的遍历
    随机数生成
    推倒重来
    动态规划初步
    子集生成
    东大oj1155 等凹函数
    P1278 单词游戏
  • 原文地址:https://www.cnblogs.com/zufezzt/p/5767475.html
Copyright © 2011-2022 走看看