1083Hello, world!(一个while解决) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a; while(scanf("%d",&a)!=EOF&&a!=&…… 题解列表 2024年05月29日 0 点赞 0 评论 159 浏览 评分:0.0
1083-hello world(ASCII码转化) 摘要:```c #define _CRT_SECURE_NO_WARNINGS #include int main() { char a[200] = { 0 }; int i = …… 题解列表 2024年02月04日 0 点赞 0 评论 78 浏览 评分:0.0
题目 1083: Hello, world! (C语言) 摘要:````c #include int main() { char a[200]; int i = 0; while(scanf("%d", &a[i]) != E…… 题解列表 2023年04月09日 0 点赞 0 评论 391 浏览 评分:9.9
Hello, world!(水题) 摘要:```c #include int main(){ int a[100],i=0,j; while(scanf("%d",&a[i])!=EOF){ i++; } fo…… 题解列表 2023年01月11日 0 点赞 3 评论 154 浏览 评分:9.9
realloc动态分配内存 摘要:解题思路:注意事项:参考代码:#include<stdio.h>/*72 101 108 108 111 44 32 119 111 114 108 100  题解列表 2022年12月09日 0 点赞 0 评论 54 浏览 评分:0.0
lf-Hello,world! 普通解法 摘要:解题思路:注意事项:参考代码: #include int main(){ int a; char s; while(scanf("%d",&a)!=EOF){…… 题解列表 2022年05月13日 0 点赞 0 评论 99 浏览 评分:0.0
Hello, world!【easy!】 摘要:解题思路:注意事项:while(~scanf("%d",&num[i])&&num[i]!='\n')//连续输入,注意是遇到'\n'就停止输入参考代码:#includ…… 题解列表 2022年04月03日 0 点赞 0 评论 141 浏览 评分:0.0
Hello, world!(已经够简单的了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n;while( scanf("%d",&n)!=EOF){ printf("%c",…… 题解列表 2021年12月09日 0 点赞 0 评论 197 浏览 评分:0.0
非常短,可以看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; while(~scanf("%d", &a))printf("%c",a); r…… 题解列表 2021年11月08日 0 点赞 0 评论 540 浏览 评分:7.3
1083 【精简】【蓝桥杯】hello world 摘要:解题思路:注意事项:参考代码:#includeint main(){ int a; while(~scanf("%d",&a)) printf("%c",a);}…… 题解列表 2021年10月06日 0 点赞 6 评论 368 浏览 评分:7.3