1083 Hello, world! 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2022年03月24日 0 点赞 0 评论 220 浏览 评分:0.0
Hello,world! 摘要:```python m = [int(i) for i in input().split()] n = [int(i) for i in input().split()] s = "" for…… 题解列表 2022年02月23日 0 点赞 0 评论 486 浏览 评分:9.9
1083: Hello, world!(c++版) 摘要:** 解题思路:** 以数字形式输入,以字符形式输出即可 ** 具体代码** ```cpp #include using namespace std; int main() { …… 题解列表 2022年02月09日 0 点赞 2 评论 213 浏览 评分:8.0
C与C++的共用解法 摘要: #include #include using namespace std; int main() { int s; //whi…… 题解列表 2022年01月28日 0 点赞 1 评论 494 浏览 评分:9.9
Hello, world!-题解(python代码) 摘要:解题思路:注意事项:参考代码:lst=list(map(str,input().split()))lst2=list(map(str,input().split()))lst.extend(lst2)…… 题解列表 2022年01月26日 0 点赞 0 评论 383 浏览 评分:9.5
1083: Hello, world! 摘要:直接用 %c 输出 ASCII 码对应的字符,注意读入换行符时输出空格。#include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2021年12月23日 0 点赞 0 评论 111 浏览 评分:0.0
Hello, world!(已经够简单的了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n;while( scanf("%d",&n)!=EOF){ printf("%c",…… 题解列表 2021年12月09日 0 点赞 0 评论 197 浏览 评分:0.0
非常短,可以看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; while(~scanf("%d", &a))printf("%c",a); r…… 题解列表 2021年11月08日 0 点赞 0 评论 540 浏览 评分:7.3
1083 【精简】【蓝桥杯】hello world 摘要:解题思路:注意事项:参考代码:#includeint main(){ int a; while(~scanf("%d",&a)) printf("%c",a);}…… 题解列表 2021年10月06日 0 点赞 6 评论 368 浏览 评分:7.3
1083: Hello, world!(C语言) 摘要:解题思路:1.接收输入,并储存在数组中。 2.等到不需要再次接收时,获取EOF退出,并在字符串末尾加上‘\0’表示结束。注意事项:字符串的截止符。参考代码:#include…… 题解列表 2021年05月30日 0 点赞 0 评论 221 浏览 评分:0.0