Hello, world! (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void Ascll(String …… 题解列表 2017年07月14日 2 点赞 0 评论 1999 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:把读取的数字转换为对应的ascii码即可!注意事项:参考代码:#include<stdio.h>int main(){ int i=0,num[50],leng; while(s…… 题解列表 2017年07月22日 4 点赞 3 评论 1503 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:就是一个输入数组的处理,看来蓝桥杯还是有简单的,注意事项:参考代码:#include<stdio.h>int main(){ int a[33]; int t=0; int i; int …… 题解列表 2017年10月18日 0 点赞 0 评论 867 浏览 评分:0.0
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 评论 914 浏览 评分:0.0
Hello, world! (C++代码) 摘要:解题思路:题目为两行输入,说明是多次循环读入的,所以按照要求转acsll码就行了,代码非常简洁注意事项:参考代码:#include <iostream>#include <string>using n…… 题解列表 2017年12月14日 0 点赞 0 评论 861 浏览 评分:0.0
Hello, world! (C++代码) 摘要:解题思路:注意事项:样例输出有毒,让我第一时间没有反应过来。参考代码:#include <iostream>#include<stdio.h>using namespace std;int main(…… 题解列表 2017年12月19日 0 点赞 1 评论 501 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:#include <stdio.h>#include <stdlib.h>int main(){ int n; while((scanf("%d",&n))!=EOF) {…… 题解列表 2017年12月25日 0 点赞 0 评论 767 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:#include <stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF){ printf("%c",…… 题解列表 2017年12月26日 0 点赞 0 评论 869 浏览 评分:0.0
SHIYI:Hello, world! (C语言代码) 摘要:解题思路:此题主要要求使用EOF作为结束,因此要用到while(scanf("%d",&a[i])!=EOF),EOF即end of file,EOF的值常常为-1,单根据系统不同,可能不同,要想结束…… 题解列表 2018年01月04日 3 点赞 2 评论 653 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:依次往整形数组中输入数字,直到在最后输入文件结束符截止。然后再利用printf语句输出相应的字符(转换)注意事项:参考代码:include<stdio.h> int main(){ …… 题解列表 2018年01月22日 2 点赞 0 评论 961 浏览 评分:0.0