Time Limit: 1000MS Memory Limit: 65536 K
Today is Windy‘s birthday. What can I say?
No input.
Just one line.
思路:这个题是一个神题...过生日肯定是说生日快乐啦...但是看到很多人错所以决定还是把这个题的答案发上来吧...供大家参考
AC代码:
#include <stdio.h> int main(){ printf("Happy Birthday!\n"); return 0; }
原文:http://www.cnblogs.com/87hbteo/p/7483936.html