Hello, world! (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void Ascll(String …… 题解列表 2017年07月14日 2 点赞 0 评论 1946 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:把读取的数字转换为对应的ascii码即可!注意事项:参考代码:#include<stdio.h>int main(){ int i=0,num[50],leng; while(s…… 题解列表 2017年07月22日 4 点赞 3 评论 1456 浏览 评分:0.0
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 评论 1128 浏览 评分:2.0
Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; char c; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年08月27日 0 点赞 0 评论 1418 浏览 评分:9.9
Hello, world! (C++代码) 摘要:解题思路:直接把数字转换成对应的ascii字符就可以了。注意事项:要一次输出,不能边读边输出;原题的输出样例里面应该是没有空格的,只是网页显示了空格;参考的代码自己调试的话按ctrl+z,才能输入eo…… 题解列表 2017年10月10日 6 点赞 5 评论 1806 浏览 评分:8.6
Hello, world! (C语言代码) 摘要:解题思路:就是一个输入数组的处理,看来蓝桥杯还是有简单的,注意事项:参考代码:#include<stdio.h>int main(){ int a[33]; int t=0; int i; int …… 题解列表 2017年10月18日 0 点赞 0 评论 828 浏览 评分:0.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 评论 1058 浏览 评分:6.0
优质题解 Manchester- Hello, world! 摘要:解题思路:用控制格式while((scanf("%d",&a[i]))!=EOF)输入整数;循环打印出ascii码对应字符;注意事项:#include<stdio.h> int main() …… 题解列表 2017年11月24日 45 点赞 54 评论 13470 浏览 评分:7.7
Hello, world! (C语言代码) 摘要:#include <stdio.h> int main() { int a[100],i=0,m; while(scanf("%d",&a[i])!=EOF) { i++; …… 题解列表 2017年11月28日 1 点赞 0 评论 876 浏览 评分:0.0
Hello, world! (C++代码) 摘要:解题思路:题目为两行输入,说明是多次循环读入的,所以按照要求转acsll码就行了,代码非常简洁注意事项:参考代码:#include <iostream>#include <string>using n…… 题解列表 2017年12月14日 0 点赞 0 评论 823 浏览 评分:0.0