首页
社区
课程
招聘
hello world
发表于: 2017-2-20 11:26 4411

hello world

2017-2-20 11:26
4411
收藏
免费 0
支持
分享
最新回复 (49)
雪    币: 4560
活跃值: (1037)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
26
int main()
{
     print("测试");
}


2017-2-21 15:38
0
雪    币: 205
活跃值: (11)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
27
void main()
{
  print("hello world ");
}


2017-2-21 15:58
0
雪    币: 359
活跃值: (450)
能力值: ( LV9,RANK:150 )
在线值:
发帖
回帖
粉丝
28
<?php
echo "Hello, World!";
?>


2017-2-21 17:26
0
雪    币: 359
活跃值: (450)
能力值: ( LV9,RANK:150 )
在线值:
发帖
回帖
粉丝
29
<script>
alert("hello, World");
</script>


2017-2-21 17:28
0
雪    币: 38
活跃值: (10)
能力值: ( LV3,RANK:30 )
在线值:
发帖
回帖
粉丝
KCG
30
int main(int argc,char* argv[])
{
printf("hello world");
return 0;
}
int main(int argc,char* argv[])
{
printf("hello world");
return 0;
}


2017-2-21 17:38
0
雪    币: 17102
活跃值: (5292)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
31
#include <stdio.h>

int main() {
	printf("hello,world");
	return  0;
}


2017-2-21 19:33
0
雪    币: 3537
活跃值: (1808)
能力值: ( LV4,RANK:40 )
在线值:
发帖
回帖
粉丝
32

我也来凑热闹

void main()
{
  print("hello world ");
}


2017-2-21 19:36
0
雪    币: 27
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
33
#include <stdio.h>
 
int main() {
    printf("hello, world");
    return 0;
}


2017-2-22 10:51
0
雪    币: 45
活跃值: (73)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
34

#include <iostream>

int mian()

{

     std::cout<<"Hello World";

     return 0;

}


2017-2-22 11:52
0
雪    币: 1140
活跃值: (102)
能力值: ( LV4,RANK:48 )
在线值:
发帖
回帖
粉丝
35
2017-2-25 22:25
0
雪    币: 5613
活跃值: (1595)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
36
printf("hello world!");


2017-2-25 23:25
0
雪    币: 1
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
37
void main()
{
  print("hello world ");
}

挺好的,就是麻烦点。

2017-2-25 23:46
0
雪    币: 9479
活跃值: (757)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
38

test

printf("hello world ");
printf("hello world ");


2017-2-25 23:59
0
雪    币: 6510
活跃值: (4414)
能力值: ( LV3,RANK:30 )
在线值:
发帖
回帖
粉丝
39
#include <stdio.h>
 
int main() {
    printf("hello, world");
    return 0;
}

2017-2-26 01:02
0
雪    币: 6818
活跃值: (153)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
40
#include <stdio.h>
 
int main() {
    printf("hello, world");
    return 0;
}
2017-2-26 04:10
0
雪    币: 6818
活跃值: (153)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
41
1
2
3
4
5
6
#include <stdio.h>
 
int main() {
    printf("hello, world");
    return 0;
}
2017-2-26 04:16
0
雪    币: 31
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
43
import calendar
import sys
import datetime
import locale as _locale
def getMonthFirstDayAndLastDay(year=None, month=None):
    if year:
        year = int(year)
    else:
        year = datetime.date.today().year
    if month:
        month = int(month)
    else:
        month = datetime.date.today().month
    firstDayWeekDay,monthRange =  calendar.monthrange(year, month)
    firstDay = datetime.date(year=year, month=month, day=1)
    lastDay = datetime.date(year=year, month=month, day=monthRange)
    print  firstDay , 'To' ,  lastDay
    return firstDay, lastDay
if __name__ == "__main__":
    getMonthFirstDayAndLastDay(2014,2)
    getMonthFirstDayAndLastDay(2017,2)
    getMonthFirstDayAndLastDay(2016,12)
    getMonthFirstDayAndLastDay(2016,2)


手痒,也来试水 哈哈哈

2017-2-28 11:35
0
雪    币: 6
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
44
#include int mian() { std::cout<<"Hello World"; return 0; } 试试
2017-3-16 14:25
0
雪    币: 6
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
45
#include <iostream>
int mian()
{
     std::cout<<"Hello World";
     return 0;
}

试试。。。。。。

2017-3-16 14:26
0
雪    币: 2
活跃值: (12)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
46
int main()
{
   printf("测试");
   return 0;
}


2017-4-6 11:27
0
雪    币: 31
活跃值: (87)
能力值: ( LV5,RANK:70 )
在线值:
发帖
回帖
粉丝
47
void main()
{
  print("hello world ");
}

test

2017-4-7 12:28
0
雪    币: 215
活跃值: (135)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
48
#include <stdio.h>

int main() {
	printf("hello,world");
	return  0;
}


2017-4-7 15:56
0
雪    币: 153
活跃值: (181)
能力值: ( LV5,RANK:60 )
在线值:
发帖
回帖
粉丝
49

printf("Hello World!\r\n");


2017-4-7 16:27
0
雪    币: 31
活跃值: (20)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
50
#include <iostream>

int main()
{
    std::cout << "Hello, World!\n";
    
    return 0;
}
2017-4-8 22:31
0
游客
登录 | 注册 方可回帖
返回