Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[100]; int n=0; while(scanf("%d",&arr[n]…… 题解列表 2019年04月07日 0 点赞 0 评论 483 浏览 评分:0.0
Hello, world!-题解(C语言代码) 摘要:解题思路: 用while(scanf("%d", &a[i]) != EOF)来输入数字,存储到数组a中 通过格式控制说明%c来将整数转化为字符常量 ```c #include int …… 题解列表 2019年07月17日 0 点赞 0 评论 744 浏览 评分: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 评论 938 浏览 评分:0.0
Hello, world! (C++代码)by Zfans. 摘要:```cpp #include #include using namespace std; int main() { vector chr; int c; w…… 题解列表 2019年07月19日 0 点赞 0 评论 846 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { string str_string; int n_in…… 题解列表 2019年12月01日 0 点赞 0 评论 3818 浏览 评分:0.0
Hello, world!-题解(C语言代码)--(简短暴力仅有9行) 摘要:**思路:直接强制转换!** #include int main() { int a; while(scanf("%d",&a) != EOF) printf("%c…… 题解列表 2019年12月29日 0 点赞 0 评论 722 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年03月14日 0 点赞 0 评论 566 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; string s; while(cin>>n&&n…… 题解列表 2020年03月24日 0 点赞 0 评论 1195 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:参照优质题解 ```cpp #include const int maxn=100005; int main() { int a[maxn],i = 0; char …… 题解列表 2020年04月05日 0 点赞 0 评论 645 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int temp; while(scanf("%d",&temp)!=EO…… 题解列表 2020年04月18日 0 点赞 0 评论 644 浏览 评分:0.0