Hello, world!-题解(Java代码) 摘要:- 题目一次其实就是输入ascll值打印出对应的字符 虽然英语不好但是看实例应该是可以看出来大致意思的 代码参考: import java.util.Scanner; public…… 题解列表 2019年12月19日 0 点赞 0 评论 1077 浏览 评分:6.0
Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,i=0,b[100];; while(~scanf("%d",&a)){ b[i+…… 题解列表 2017年10月22日 0 点赞 0 评论 1069 浏览 评分:6.0
Hello, world! (Java代码) 摘要:解题思路:注意事项:题目中的“Please process to the end of file(EOF).”,在控制台输入数据时,是否应该以“Ctr+Z”结束?参考代码:import java.ut…… 题解列表 2018年03月26日 0 点赞 0 评论 649 浏览 评分:6.0
Hello, world! (Java代码)很简单lol 摘要:解题思路:没必要复杂,复杂的话。。。估计就不会了,毕竟是跳过来做的这一题lol参考代码:import java.util.Scanner;public class HelloWorld { p…… 题解列表 2018年01月30日 11 点赞 6 评论 1247 浏览 评分:5.2
Hello, world!-题解(Python代码) python 摘要:chr() 用一个范围在 range(256)内的(就是0~255)整数作参数,**返回一个对应的字符** ```python def f(arr):#定义函数 arr = [int(i…… 题解列表 2019年11月22日 0 点赞 0 评论 1117 浏览 评分:4.8
Hello, world! (C语言代码) 摘要:#include<stdio.h> int main(void) { char s[33],i=0; int x; while(scanf("%d",&x)!=EOF…… 题解列表 2017年07月26日 0 点赞 0 评论 1136 浏览 评分:2.0
Hello, world! (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { int a; …… 题解列表 2018年06月04日 1 点赞 0 评论 678 浏览 评分:2.0
Hello, world! (C++代码) 摘要:解题思路:输入可以先放在数组里,最后一个个读出来。注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int i=0; …… 题解列表 2018年07月20日 1 点赞 0 评论 894 浏览 评分:2.0
Hello, world! (C语言代码) 摘要:解题思路:就是一个输入数组的处理,看来蓝桥杯还是有简单的,注意事项:参考代码:#include<stdio.h>int main(){ int a[33]; int t=0; int i; int …… 题解列表 2017年10月18日 0 点赞 0 评论 834 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[100]; int n=0; while(scanf("%d",&arr[n]…… 题解列表 2019年04月07日 0 点赞 0 评论 362 浏览 评分:0.0