题解 1083: Hello, world!

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

筛选

几行代码解决第一个Hello, world! (C语言代码)

摘要:解题思路:你们看到的屏幕回显出来的字符hello, 在白盒测试时,评测系统根本不会出现这种回显!你的输入是一个整体,在输入缓冲区!你的输出也是一个整体,在输出缓冲区!注意事项:注意缓冲区。参考代码:#……

非常短,可以看看

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a;    while(~scanf("%d", &a))printf("%c",a);    r……

Hello, world!-题解(Python代码)

摘要:注意事项:输入有一个回车,写两次input参考代码:num_list1 = map(int, input().strip().split())num_list2 = map(int, input().……

Hello, world! (C++代码)

摘要:**题目看不懂,直接使用英文翻译软件翻译** 代码如下: #include using namespace std; int main() { in……

Hello, world! (Java代码)

摘要:解题思路:注意事项:题目中的“Please process to the end of file(EOF).”,在控制台输入数据时,是否应该以“Ctr+Z”结束?参考代码:import java.ut……