题解 1083: Hello, world!

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

筛选

Hello, world! (C语言代码)

摘要:解题思路:把读取的数字转换为对应的ascii码即可!注意事项:参考代码:#include<stdio.h>int main(){    int i=0,num[50],leng;    while(s……

Hello, world! (C语言代码)

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

Hello, world! (C++代码)

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

Hello, world! (C语言代码)

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

Hello, world! (C语言代码)

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

Manchester- Hello, world!

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