题解 1083: Hello, world!

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

筛选

1083 Hello, world!

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

Hello,world!

摘要:```python m = [int(i) for i in input().split()] n = [int(i) for i in input().split()] s = "" for……

1083: Hello, world!(c++版)

摘要:** 解题思路:** 以数字形式输入,以字符形式输出即可 ** 具体代码** ```cpp #include using namespace std; int main() { ……

1083: Hello, world!

摘要:直接用 %c 输出 ASCII 码对应的字符,注意读入换行符时输出空格。#include <bits/stdc++.h> using namespace std; int main() { ……

非常短,可以看看

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

1083: Hello, world!(C语言)

摘要:解题思路:1.接收输入,并储存在数组中。               2.等到不需要再次接收时,获取EOF退出,并在字符串末尾加上‘\0’表示结束。注意事项:字符串的截止符。参考代码:#include……