您的位置:首页 > 编程语言

磕代码:输出

2020-08-03 16:33 127 查看

仅输出
Java:
public class Main{
public static void main(String[]args)
{
System.out.println(“Practice makes perfect!”);
}
}
c:
#include<stdio.h>
int main()
{
printf(“Practice makes perfect!”);
}
\分号
c艹:
#include
int main()
{
using namespace std;
cout<<“Practice makes perfect!”;
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: