赞
踩
经典:C语言实现春节快乐,应该没人看不懂叭
- #include <stdio.h>//头文件
- int main() //主函数
- {
- printf("春节快乐!\n");//输出语句
- return 0;//主函数返回值为0
- }
编译运行结果如下:
- 春节快乐!
-
- --------------------------------
- Process exited after 1.401 seconds with return value 0
- 请按任意键继续. . .
是不是人人都能看懂的春节快乐,此外还提供了其他语言的春节快乐
C++实现春节快乐
- #include<iostream>//预处理
- using namespace std;//命名空间
- int main()//主函数
- {
- cout<<"春节快乐!"<<endl;
- return 0; //函数返回值为0;
- }
编译运行结果如下:
- 春节快乐!
-
- --------------------------------
- Process exited after 0.06104 seconds with return value 0
- 请按任意键继续. . .
C#实现春节快乐
源代码演示:
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Test
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("春节快乐!");
- }
- }
- }
编译运行结果如下:
- 春节快乐!
- 请按任意键继续. . .
Java实现春节快乐:
源代码演示:
- public class HappyNew{
- public static void main(String []args) {
- System.out.println("春节快乐!");
- }
- }
编译运行结果如下:
春节快乐!
Python实现春节快乐:
源代码演示:
- #!/usr/bin/python3
-
- print("春节快乐!")
编译运行结果如下:
春节快乐!
更多好玩的小项目看我哔哩哔哩、Q裙:
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。