题解 1083: Hello, world!

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

筛选

Hello, world! (C++代码)

摘要:解题思路:输入可以先放在数组里,最后一个个读出来。注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int i=0; ……

Hello, world! (C语言代码)

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

Hello, world! (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { int a; ……

Hello, world! (C语言代码)

摘要:解题思路:注意事项:竞赛题一定要控制程序执行时间,所以不可以使用while(true)无限死循环参考代码:#include<stdio.h> int main() { int n; whi……

Hello, world! (Java代码)

摘要:解题思路:注意事项:参考代码:package cWeb.buleCup; import java.util.Scanner; public class C1083 { public……

Hello, world! (C语言代码)

摘要:解题思路:将数字转换为字符输出,依据ASCII码值注意事项:参考代码:#include<stdio.h>int main(){ int a[100]; int i = 0; int len; whil……

Hello, world! (Java代码)

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

Hello, world! (C语言代码)

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

Hello, world! (Java代码)

摘要:解题思路:看代码即可注意事项:参考代码:   public static void main(String[] args){        Scanner sc=new Scanner(System.……

Hello, world! (C语言代码)

摘要:解题思路:scanf函数返回值为-1时停止输入注意事项:数组a为char型时程序答案错误,查了一下原因应该是Ctrl+Z的ASCII码为26被成功写入数组的元素中,此时scanf函数返回值不为EOF,……