|
回帖奖励 +9
program main
implicit none
character(20)::a
a="hellow world!"
print*,a
endprogram ,main
#include <iostream>
using namespace std;
int main()
{
cout<<"hellow world!";
return 0;
}
Module Module1
Sub Main()
System.Console.WriteLine("hellow world!")
End Sub
End Module |
评分
-
查看全部评分
|