L1-021. 重要的话说三遍

时间:2022-01-09 11:17:07

L1-021. 重要的话说三遍

时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
陈越

这道超级简单的题目没有任何输入。

你只需要把这句很重要的话 —— “I'm gonna WIN!”——连续输出三遍就可以了。

注意每遍占一行,除了每行的回车不能有任何多余字符。

#include<iostream>
#include<map>
#include<string>
using namespace std;
int main(){
cout<<"I'm gonna WIN!"<<endl;
cout<<"I'm gonna WIN!"<<endl;
cout<<"I'm gonna WIN!"<<endl;
}