题解 1001: [编程入门]第一个HelloWorld程序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Ikaros-第一个HelloWorld程序

摘要:解题思路:简单的就输出就可以参考代码:#include<iostream>using namespace std;int main(){    cout<<"*********************……

简单代码易理解

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ printf("**************************\n"); printf("Hello W……

Hello World! 开始C语言

摘要:解题思路:注意事项:前两个printf()函数需要使用换行符参考代码:#include<stdio.h> int main()  {     printf("******************……

printf Hello World!

摘要:解题思路:用printf输出一行你想表示的字符串注意事项:注意换行用\n参考代码:#include<stdio.h>int main(){    printf("*******************……