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! 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2022年03月24日 0 点赞 0 评论 220 浏览 评分:0.0
Hello, world!【easy!】 摘要:解题思路:注意事项:while(~scanf("%d",&num[i])&&num[i]!='\n')//连续输入,注意是遇到'\n'就停止输入参考代码:#includ…… 题解列表 2022年04月03日 0 点赞 0 评论 141 浏览 评分:0.0
1083: Hello, world! 摘要:解题思路:什么 b 题目啊,我一直在想怎么才能输入一串整数后自动结束,因为题目强调了没有 EOF,我还以为是有什么非常规接收输入的办法,结果随手提交发现通过了。那你写那么多条件干嘛?注意事项:不是很懂…… 题解列表 2022年04月23日 0 点赞 0 评论 380 浏览 评分:9.9
Hello, world! 题解(c++简单啦,直接输出,so easy) 摘要:**解题思路:** 很简单,用*while(scanf("%d",&a)!=EOF)*输入,再用*char*就可以输出当前数在ASCII里的符号,根本不需要用到数组。 废话不多说,直接上程序!呵呵…… 题解列表 2022年05月11日 0 点赞 0 评论 280 浏览 评分:9.0
lf-Hello,world! 普通解法 摘要:解题思路:注意事项:参考代码: #include int main(){ int a; char s; while(scanf("%d",&a)!=EOF){…… 题解列表 2022年05月13日 0 点赞 0 评论 100 浏览 评分:0.0
!!!记住多行输入的方法!!! 摘要:解题思路:注意事项:参考代码:import syswhile True: line=sys.stdin.readline() if not line: break fo…… 题解列表 2022年06月20日 0 点赞 0 评论 96 浏览 评分:0.0
两句话搞定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; while (cin >> a) { cout << …… 题解列表 2022年06月24日 0 点赞 0 评论 693 浏览 评分:9.9
1083——————Hello,World! 摘要:题目 1083: Hello, world! **题目描述** This is the first problem for test. Since all we know the ASCII …… 题解列表 2022年08月09日 0 点赞 0 评论 625 浏览 评分:0.0
1083: Hello, world! 摘要:```cpp #include using namespace std; int main() { int a; while(cin>>a) cout…… 题解列表 2022年08月28日 0 点赞 0 评论 246 浏览 评分:9.9