标签:解决 type clu 需要 问题 分享 code color style
本人在校大学生一枚,开通博客,主要是想记录自己的学习过程,分享自己的学习经历。记得大一的时候,很多不懂的操作和知识,都是在博客上找到了相应的解决办法。但比较讽刺的是,很多时候,曾经解决了的问题,当再次面对时,会神奇地发现忘记了关键的步骤或内容,于是又需要去重新百度大神的博客,再一次解决问题。所以,为了日后能尽量避免这类情况的发生,我开通了这个博客,记录自己的学习的过程,同时也希望我写的博客,能够帮助到此时正在浏览博客的你!!
这是我的第一篇博客,构思的时候,我联想起了曾经写过的第一个程序——“Hello World”,这两个单词,可以说是学习编程的仪式感。第一次编程有”Hello World“ 的仪式感,第一篇博客,自然也有要自己仪式感, So——"Hello, my first blog"~~ ~^_^~
C语言
1 #include<stdio.h> 2 int main() 3 { 4 printf("Hello, my first blog!!"); 5 }
C++
1 #include"iostream" 2 using namespace std; 3 int main() 4 { 5 printf("Hello, my first blog!!"); 6 }
Java
1 public class h { 2 public static void main(String[] args) { 3 System.out.println("Hello, my first blog!!"); 4 } 5 }
Pyhon
1 print("Hello, my first blog!!")
Html
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 </head> 7 <body> 8 <h1>Hello, my first blog!!</h1> 9 </body> 10 </html>
Javascript
1 document.write("Hello, my first blog!!");
这是目前为止,自己所了解的几种语言中输出字符串的方式!!
第一篇博客~~
请大家多多指教!!!
“Hello, my first blog”------第一篇博客的仪式感
标签:解决 type clu 需要 问题 分享 code color style
原文地址:https://www.cnblogs.com/Asgard-l/p/10266131.html