Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],b,i=0,j; while(scanf("%d",&b)!=EOF) { a[i]=b…… 题解列表 2018年12月27日 0 点赞 0 评论 366 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:#include <stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF){ printf("%c",…… 题解列表 2017年12月26日 0 点赞 0 评论 834 浏览 评分:0.0
lf-Hello,world! 普通解法 摘要:解题思路:注意事项:参考代码: #include int main(){ int a; char s; while(scanf("%d",&a)!=EOF){…… 题解列表 2022年05月13日 0 点赞 0 评论 100 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:参照优质题解 ```cpp #include const int maxn=100005; int main() { int a[maxn],i = 0; char …… 题解列表 2020年04月05日 0 点赞 0 评论 425 浏览 评分:0.0
Hello, world!-题解(C语言代码) 摘要: #define _CRT_SECURE_NO_WARNINGS #include int main(void) { int a, b; …… 题解列表 2020年05月13日 0 点赞 0 评论 292 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:把读取的数字转换为对应的ascii码即可!注意事项:参考代码:#include<stdio.h>int main(){ int i=0,num[50],leng; while(s…… 题解列表 2017年07月22日 4 点赞 3 评论 1456 浏览 评分:0.0
Hello, world! (C++代码)by Zfans. 摘要:```cpp #include using namespace std; int main() { int asc[100], i = 0; while (cin >> a…… 题解列表 2019年07月19日 0 点赞 0 评论 827 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:将数字转换为字符输出,依据ASCII码值注意事项:参考代码:#include<stdio.h>int main(){ int a[100]; int i = 0; int len; whil…… 题解列表 2018年04月27日 0 点赞 0 评论 550 浏览 评分:0.0
realloc动态分配内存 摘要:解题思路:注意事项:参考代码:#include<stdio.h>/*72 101 108 108 111 44 32 119 111 114 108 100  题解列表 2022年12月09日 0 点赞 0 评论 55 浏览 评分:0.0
Hello, world!-题解(C语言代码)--(简短暴力仅有9行) 摘要:**思路:直接强制转换!** #include int main() { int a; while(scanf("%d",&a) != EOF) printf("%c…… 题解列表 2019年12月29日 0 点赞 0 评论 550 浏览 评分:0.0