1 条题解
-
0
C :
main() { printf("**************************\n Very Good!\n**************************"); return 0; }
C++ :
#include<iostream> using namespace std; int main(){ cout<<"**************************"<<endl; cout<<" Very Good!"<<endl; cout<<"**************************"<<endl; return 0; }
Pascal :
begin writeln('**************************'); writeln(' Very Good!'); writeln('**************************'); end.
Java :
public class Main { public static void main(String[] args) { String str = "**************************\n" + " Very Good!\n"+ "**************************\n" ; System.out.println(str); } }
Python :
# coding=utf-8 print('''************************** Very Good! **************************''')
- 1
信息
- ID
- 3
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 10
- 标签
- 递交数
- 5
- 已通过
- 1
- 上传者