Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[100]; int n=0; while(scanf("%d",&arr[n]…… 题解列表 2019年04月07日 0 点赞 0 评论 362 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:#include <stdio.h>#include <stdlib.h>int main(){ int n; while((scanf("%d",&n))!=EOF) {…… 题解列表 2017年12月25日 0 点赞 0 评论 712 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:#include <stdio.h> int main() { int a[100],i=0,m; while(scanf("%d",&a[i])!=EOF) { i++; …… 题解列表 2017年11月28日 1 点赞 0 评论 884 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:把读取的数字转换为对应的ascii码即可!注意事项:参考代码:#include<stdio.h>int main(){ int i=0,num[50],leng; while(s…… 题解列表 2017年07月22日 4 点赞 3 评论 1462 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:根据ASCII表对应的转换注意事项:转换过程中注意对应所占的空间不能超过参考代码#include<stdio.h>int main(){ int a; printf("Please in…… 题解列表 2018年10月14日 0 点赞 0 评论 557 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=0,a[50]; while(scanf("%d",&num[i]) != EOF) …… 题解列表 2018年11月15日 0 点赞 0 评论 348 浏览 评分:0.0
SHIYI:Hello, world! (C语言代码) 摘要:解题思路:此题主要要求使用EOF作为结束,因此要用到while(scanf("%d",&a[i])!=EOF),EOF即end of file,EOF的值常常为-1,单根据系统不同,可能不同,要想结束…… 题解列表 2018年01月04日 3 点赞 2 评论 626 浏览 评分:0.0
Hello, world! (Java代码) 摘要:解题思路:看代码即可注意事项:参考代码: public static void main(String[] args){ Scanner sc=new Scanner(System.…… 题解列表 2018年03月30日 0 点赞 0 评论 762 浏览 评分:0.0
ASCII码转字母 摘要:解题思路:将ASCII码转为字母用函数chr(),列表和字符串的连接都可以用+注意事项:输入两行要接在一起,输出要输出一行参考代码:L = list(map(int,input().split()))…… 题解列表 2023年03月17日 0 点赞 0 评论 58 浏览 评分:0.0
利用类型转换解Hello, world! 摘要:解题思路:利用char,把int类型转换为char类型即可注意事项:参考代码:#include<iostream>using namespace std;int main(){int a = 0;wh…… 题解列表 2024年03月07日 0 点赞 0 评论 129 浏览 评分:0.0