Write Happy New Year in 10 different programming languages

Happy New Year 2019 in more than 10 most popular programming languages ​​is a way for coders to send New Year greetings to their friends, relatives and partners during the New Year to spring.

Happy New Year 2019 in more than 10 most popular programming languages ​​is a way for coders to send New Year greetings to their friends, relatives and partners during the New Year to spring.

More specifically, you can use these codes in your apps, websites, and the time will automatically jump without you having to worry about what year it is now, or you have to come back and fix your hands whenever the new year come.

Let TipsMake.com see how to write these bold New Year greetings.

Happy New Year in Python:

 from datetime import date print ("Chúc mừng năm mới",date.today().year,"!") #viết bởi TipsMake.com 

Happy New Year in PHP

 echo "Chúc mừng năm mới ", date("Y"), "!"; /*code by TipsMake.com*/ 

Happy New Year with C / C ++

 #include #include int main() { time_t now = time(NULL); struct tm* local = localtime(&now); printf("Chúc mừng năm mới %d!", local->tm_year + 1900); return 0; /*code by TipsMake.com*/ } 

Happy New Year Code with JavaScript:

 document.write(new Date().getFullYear()); 

Write happy new year in Perl:

 my $year = (localtime)[5]; print "Chúc mừng năm mới ", $year + 1900, "!"; #code by Quantrimang 

Write a happy new year code with Ruby:

 print "Chúc mừng năm mới ", Time.now.year, "!" #Code by TipsMake.com #Nếu chỉ cần hiển thị năm, bạn có thể dùng lệnh puts Time.now.year 

Happy New Year Code in Java:

 import java.util.*; import java.text.*; public class Apollo { public static void main(String[] args) { Date date = new Date(); //code by TipsMake.com SimpleDateFormat simpleDateformat=new SimpleDateFormat("yyyy"); System.out.println("Chúc mừng năm mới " + simpleDateformat.format(date)+"!"); } } 

Happy New Year Code in Lua:

 print("Chúc mừng năm mới",os.date("*t").year,"!") --[[Code by TipsMake.com--]] 

Happy New Year code in Clojue:

 (let [date (java.util.Date.) sdf (java.text.SimpleDateFormat. "yyyy")] (println "Chúc mừng năm mới"(.format sdf date)"!")) ;;Code by TipsMake.com 

Happy New Year Code in C #:

 using System; class Program { static void Main(string[] args) { Console.WriteLine("Chúc mừng năm mới " + DateTime.Now.Year + "!"); /*TipsMake.com*/ } } 

Do you have a more unique Happy New Year code? Please share for yourself and others by commenting below this article.

4 ★ | 5 Vote | 👨 1182 Views
« PREV POST
NEXT POST »