1083-hello world(ASCII码转化)
摘要:```c
#define _CRT_SECURE_NO_WARNINGS
#include
int main()
{
char a[200] = { 0 };
int i = ……
利用类型转换解Hello, world!
摘要:解题思路:利用char,把int类型转换为char类型即可注意事项:参考代码:#include<iostream>using namespace std;int main(){int a = 0;wh……
1083Hello, world!(一个while解决)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a; while(scanf("%d",&a)!=EOF&&a!=&……
Hello, world! (C语言代码)
摘要:#include<stdio.h>
int main(void)
{
char s[33],i=0;
int x;
while(scanf("%d",&x)!=EOF……
Hello, world! (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int a;
……
Hello, world! (C++代码)
摘要:解题思路:输入可以先放在数组里,最后一个个读出来。注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int i=0; ……
Hello, world!-题解(Python代码) python
摘要:chr() 用一个范围在 range(256)内的(就是0~255)整数作参数,**返回一个对应的字符**
```python
def f(arr):#定义函数
arr = [int(i……
Hello, world! (Java代码)很简单lol
摘要:解题思路:没必要复杂,复杂的话。。。估计就不会了,毕竟是跳过来做的这一题lol参考代码:import java.util.Scanner;public class HelloWorld { p……
Hello, world! (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main(){
int a,i=0,b[100];;
while(~scanf("%d",&a)){
b[i+……