题解 1083: Hello, world!

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Hello, world! (C++代码)

摘要:解题思路:注意事项:样例输出有毒,让我第一时间没有反应过来。参考代码:#include <iostream>#include<stdio.h>using namespace std;int main(……

Hello, world! (C++代码)

摘要:解题思路:题目为两行输入,说明是多次循环读入的,所以按照要求转acsll码就行了,代码非常简洁注意事项:参考代码:#include <iostream>#include <string>using n……
优质题解

Manchester- Hello, world!

摘要:解题思路:用控制格式while((scanf("%d",&a[i]))!=EOF)输入整数;循环打印出ascii码对应字符;注意事项:#include<stdio.h> int main() ……

Hello, world! (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,i=0,b[100];; while(~scanf("%d",&a)){ b[i+……

Hello, world! (C语言代码)

摘要:解题思路:就是一个输入数组的处理,看来蓝桥杯还是有简单的,注意事项:参考代码:#include<stdio.h>int main(){ int a[33]; int t=0; int i; int ……

Hello, world! (C++代码)

摘要:解题思路:直接把数字转换成对应的ascii字符就可以了。注意事项:要一次输出,不能边读边输出;原题的输出样例里面应该是没有空格的,只是网页显示了空格;参考的代码自己调试的话按ctrl+z,才能输入eo……

Hello, world! (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n;    char c;    while(scanf("%d",&n)!=EOF)    { ……