吾乃元始天尊!1083: Hello, world!
摘要:#### 输入然后输出(简单so easy:beers:)
```cpp
#include
using namespace std;
int main()
{
int n;
whil……
Hello, world!(水题)
摘要:```c
#include
int main(){
int a[100],i=0,j;
while(scanf("%d",&a[i])!=EOF){
i++;
}
fo……
题目 1083: Hello, world! (C语言)
摘要:````c
#include
int main()
{
char a[200];
int i = 0;
while(scanf("%d", &a[i]) != E……
用vector容器写的
摘要:解题思路:原题链接:Hello,world!注意事项:熟悉vector的用法参考代码:#include<iostream>#include<vector>using namespace std;int……
Hello, world!-题解(C++代码)关于EOF....
摘要:解题思路:注意事项: 关于EFO,是C语言stdio.h中的一个宏定义,赋值为-1 但不能直接在你的程序里写上-1,因为能在键盘上输入的东西,ascll码都是 >=0 的, 所以,可……
Hello, world!-题解(C++代码) 极简低奢的c++代码 它不香嘛~~~
摘要: #include
#include
using namespace std;
int main()
{
int n;
……
Hello, world!-题解(python代码)
摘要:解题思路:注意事项:参考代码:lst=list(map(str,input().split()))lst2=list(map(str,input().split()))lst.extend(lst2)……
Hello, world!-题解(C语言)(三行解决问题)(对~scanf("",)中的“~”详细解释,新手福利!)
摘要:```c
#include
void main()
{
int a;
while (~scanf("%d",&a))//“~”意为取反,下面有对此的解释。
//也可写为while(s……
Hello, world!-题解(Java代码)
摘要:```java
import java.util.Scanner;
/**
* Hello World
* http://www.dotcpp.com/oj/problem1083.ht……