题解 1083: Hello, world!

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

筛选

Hello, world! (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {         public static void Ascll(String ……

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 a[33]; int t=0; int i; int ……

Hello, world! (C++代码)

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

Hello, world! (C++代码)

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

SHIYI:Hello, world! (C语言代码)

摘要:解题思路:此题主要要求使用EOF作为结束,因此要用到while(scanf("%d",&a[i])!=EOF),EOF即end of file,EOF的值常常为-1,单根据系统不同,可能不同,要想结束……

Hello, world! (C语言代码)

摘要:解题思路:依次往整形数组中输入数字,直到在最后输入文件结束符截止。然后再利用printf语句输出相应的字符(转换)注意事项:参考代码:include<stdio.h>    int main(){  ……