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 评论 1129 浏览 评分: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 评论 1807 浏览 评分: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 评论 1059 浏览 评分:6.0
优质题解 Manchester- Hello, world! 摘要:解题思路:用控制格式while((scanf("%d",&a[i]))!=EOF)输入整数;循环打印出ascii码对应字符;注意事项:#include<stdio.h> int main() …… 题解列表 2017年11月24日 45 点赞 54 评论 13474 浏览 评分: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 评论 877 浏览 评分:0.0
WU-Hello, world! (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { int a; while(scanf("%d",&a)!=EOF) { printf("%c",a); …… 题解列表 2017年12月14日 13 点赞 4 评论 2751 浏览 评分:7.5
Hello, world! (C语言代码) 摘要:解题思路:#include <stdio.h>#include <stdlib.h>int main(){ int n; while((scanf("%d",&n))!=EOF) {…… 题解列表 2017年12月25日 0 点赞 0 评论 710 浏览 评分:0.0