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

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

筛选

1001题解简单

摘要:解题思路:直接输出,“*”不要少。注意事项:参考代码:#include<stdio.h>int main(){ printf("**************************\nHello Wo……

题解1001,我的第一个程序

摘要:解题思路:使用cout或者printf两者之一皆可注意事项:换行符是 \n 不要漏了格式不要错了参考代码:代码(一)#include<iostream>using namespace std;int ……

打字练习c++

摘要:解题思路:记得换行注意事项:记得换行参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){    cout<<……

第一个HelloWorld程序(java代码)

摘要:解题思路:没什么思路,很简单的代码注意事项:参考代码:public class Main {    public static void main(String[] args){        Sys……

第一个HelloWorld程序

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){  cout<<"**********************……