Hello, world!-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int m; while(scanf("%d",&m)!=EOF) { printf…… 题解列表 2021年01月30日 0 点赞 2 评论 596 浏览 评分:7.5
WU-Hello, world! (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a; while(scanf("%d",&a)!=EOF) { printf("%c",a); …… 题解列表 2017年12月14日 13 点赞 4 评论 2753 浏览 评分:7.5
几行代码解决第一个Hello, world! (C语言代码) 摘要:解题思路:你们看到的屏幕回显出来的字符hello, 在白盒测试时,评测系统根本不会出现这种回显!你的输入是一个整体,在输入缓冲区!你的输出也是一个整体,在输出缓冲区!注意事项:注意缓冲区。参考代码:#…… 题解列表 2019年01月05日 0 点赞 1 评论 947 浏览 评分:7.3
非常短,可以看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; while(~scanf("%d", &a))printf("%c",a); r…… 题解列表 2021年11月08日 0 点赞 0 评论 553 浏览 评分:7.3
Hello, world!-题解(Java代码) 摘要:import java.util.Scanner; public abstract class Main { public static void main(String[] args) { …… 题解列表 2021年01月19日 0 点赞 0 评论 418 浏览 评分:7.3
1083 【精简】【蓝桥杯】hello world 摘要:解题思路:注意事项:参考代码:#includeint main(){ int a; while(~scanf("%d",&a)) printf("%c",a);}…… 题解列表 2021年10月06日 0 点赞 6 评论 374 浏览 评分:7.3
Hello, world!-题解(Python代码) 摘要: n = list(map(int,input().split())) while min(n)>=32: try: n.extend(ma…… 题解列表 2021年01月21日 0 点赞 1 评论 726 浏览 评分:7.0
Hello, world!-题解(Python代码) 摘要:注意事项:输入有一个回车,写两次input参考代码:num_list1 = map(int, input().strip().split())num_list2 = map(int, input().…… 题解列表 2021年02月18日 0 点赞 0 评论 318 浏览 评分:6.7
Hello, world! (C++代码) 摘要:**题目看不懂,直接使用英文翻译软件翻译** 代码如下: #include using namespace std; int main() { in…… 题解列表 2020年02月13日 0 点赞 2 评论 643 浏览 评分:6.7
Hello, world! (Java代码) 摘要:解题思路:注意事项:题目中的“Please process to the end of file(EOF).”,在控制台输入数据时,是否应该以“Ctr+Z”结束?参考代码:import java.ut…… 题解列表 2018年03月26日 0 点赞 0 评论 649 浏览 评分:6.0