利用类型转换解Hello, world! 摘要:解题思路:利用char,把int类型转换为char类型即可注意事项:参考代码:#include<iostream>using namespace std;int main(){int a = 0;wh…… 题解列表 2024年03月07日 0 点赞 0 评论 123 浏览 评分:0.0
用vector容器写的 摘要:解题思路:原题链接:Hello,world!注意事项:熟悉vector的用法参考代码:#include<iostream>#include<vector>using namespace std;int…… 题解列表 2023年05月27日 0 点赞 0 评论 174 浏览 评分:9.9
吾乃元始天尊!1083: Hello, world! 摘要:#### 输入然后输出(简单so easy:beers:) ```cpp #include using namespace std; int main() { int n; whil…… 题解列表 2022年12月24日 0 点赞 0 评论 165 浏览 评分:9.9
c++三行题解 摘要:解题思路:使用强转输出数据注意事项:while的循环读入参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int…… 题解列表 2022年12月07日 0 点赞 0 评论 121 浏览 评分:9.9
Hello, world!(怀氏c++) 摘要:解题思路:把数字转换成ASCI码值,就是对应的char类型值注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; …… 题解列表 2022年10月24日 0 点赞 0 评论 132 浏览 评分:9.9
1083: Hello, world! 摘要:```cpp #include using namespace std; int main() { int a; while(cin>>a) cout…… 题解列表 2022年08月28日 0 点赞 0 评论 246 浏览 评分:9.9
两句话搞定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; while (cin >> a) { cout << …… 题解列表 2022年06月24日 0 点赞 0 评论 692 浏览 评分:9.9
Hello, world! 题解(c++简单啦,直接输出,so easy) 摘要:**解题思路:** 很简单,用*while(scanf("%d",&a)!=EOF)*输入,再用*char*就可以输出当前数在ASCII里的符号,根本不需要用到数组。 废话不多说,直接上程序!呵呵…… 题解列表 2022年05月11日 0 点赞 0 评论 279 浏览 评分:9.0
1083: Hello, world! 摘要:解题思路:什么 b 题目啊,我一直在想怎么才能输入一串整数后自动结束,因为题目强调了没有 EOF,我还以为是有什么非常规接收输入的办法,结果随手提交发现通过了。那你写那么多条件干嘛?注意事项:不是很懂…… 题解列表 2022年04月23日 0 点赞 0 评论 380 浏览 评分:9.9
1083: Hello, world!(c++版) 摘要:** 解题思路:** 以数字形式输入,以字符形式输出即可 ** 具体代码** ```cpp #include using namespace std; int main() { …… 题解列表 2022年02月09日 0 点赞 2 评论 213 浏览 评分:8.0