Hello, world!-题解(C++代码) 摘要:### 这道题核心就是 int和char的变换 一个int数变成char 语法是 (char)int # 示例代码 ``` #include using namespace std; i…… 题解列表 2020年05月19日 0 点赞 0 评论 351 浏览 评分: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++代码) 摘要:解题思路:题目为两行输入,说明是多次循环读入的,所以按照要求转acsll码就行了,代码非常简洁注意事项:参考代码:#include <iostream>#include <string>using n…… 题解列表 2017年12月14日 0 点赞 0 评论 824 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年03月14日 0 点赞 0 评论 367 浏览 评分:0.0
利用类型转换解Hello, world! 摘要:解题思路:利用char,把int类型转换为char类型即可注意事项:参考代码:#include<iostream>using namespace std;int main(){int a = 0;wh…… 题解列表 2024年03月07日 0 点赞 0 评论 123 浏览 评分:0.0
Hello, world! (C++代码) 摘要:解题思路:已AC注意事项:输入和输出不在同一个缓冲区!参考代码:#include <cstdio>using namespace std;int main(){ int asc; …… 题解列表 2018年10月29日 0 点赞 0 评论 402 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { string str_string; int n_in…… 题解列表 2019年12月01日 0 点赞 0 评论 3659 浏览 评分:0.0
Hello, world! (C++代码) 摘要:解题思路:定义一个long long int类型的n,用while不断输入,用EOF判断结束,输出强制转换为char类型。注意事项:1.EOF:作为文件结束标志。2.不定义为long long int…… 题解列表 2019年02月24日 1 点赞 0 评论 494 浏览 评分: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 评论 707 浏览 评分:0.0
Hello, world! (C++代码) 摘要:解题思路:注意事项:样例输出有毒,让我第一时间没有反应过来。参考代码:#include <iostream>#include<stdio.h>using namespace std;int main(…… 题解列表 2017年12月19日 0 点赞 1 评论 473 浏览 评分:0.0