Hello, world!【easy!】 摘要:解题思路:注意事项:while(~scanf("%d",&num[i])&&num[i]!='\n')//连续输入,注意是遇到'\n'就停止输入参考代码:#includ…… 题解列表 2022年04月03日 0 点赞 0 评论 518 浏览 评分:0.0
1083 Hello, world! 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2022年03月24日 0 点赞 0 评论 644 浏览 评分: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 评论 891 浏览 评分:9.9
1083: Hello, world!(c++版) 摘要:** 解题思路:** 以数字形式输入,以字符形式输出即可 ** 具体代码** ```cpp #include using namespace std; int main() { …… 题解列表 2022年02月09日 0 点赞 2 评论 482 浏览 评分:8.0
C与C++的共用解法 摘要: #include #include using namespace std; int main() { int s; //whi…… 题解列表 2022年01月28日 0 点赞 1 评论 828 浏览 评分: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 评论 838 浏览 评分:9.5
1083: Hello, world! 摘要:直接用 %c 输出 ASCII 码对应的字符,注意读入换行符时输出空格。#include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2021年12月23日 0 点赞 0 评论 486 浏览 评分:0.0
Hello, world!(已经够简单的了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n;while( scanf("%d",&n)!=EOF){ printf("%c",…… 题解列表 2021年12月09日 0 点赞 0 评论 593 浏览 评分:0.0
非常短,可以看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; while(~scanf("%d", &a))printf("%c",a); r…… 题解列表 2021年11月08日 0 点赞 0 评论 1192 浏览 评分:7.3
1083 【精简】【蓝桥杯】hello world 摘要:解题思路:注意事项:参考代码:#includeint main(){ int a; while(~scanf("%d",&a)) printf("%c",a);}…… 题解列表 2021年10月06日 0 点赞 6 评论 753 浏览 评分:7.3