你用的是什么语言
C语言
#include <stdio.h>
int main()
{
/* 我的第一个 C 程序 */
printf("* * * * * * * * * * * * * * *");
return 0;
}
C++
#include <iostream>
using namespace std;
int main()
{
cout << "* * * * * * * * * * * * * * *";
return 0;
}
java
public class HelloWorld {
public static void main(String []args) {
System.out.println("* * * * * * * * * * * * * * *");
}
}
python
#!/usr/bin/python
print("* * * * * * * * * * * * * * *");
package com.itheima.bean;
public class test2 {
public static void main(String[] args) {
System.out.println("* * * * * * * * * * * * * * *");
}
}
print('* ' * 14 + '*')