Hello, world! (C++代码) 摘要:解题思路:注意事项:样例输出有毒,让我第一时间没有反应过来。参考代码:#include <iostream>#include<stdio.h>using namespace std;int main(…… 题解列表 2017年12月19日 0 点赞 1 评论 626 浏览 评分:0.0
1083: Hello, world! 摘要:直接用 %c 输出 ASCII 码对应的字符,注意读入换行符时输出空格。#include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2021年12月23日 0 点赞 0 评论 171 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:### 这道题核心就是 int和char的变换 一个int数变成char 语法是 (char)int # 示例代码 ``` #include using namespace std; i…… 题解列表 2020年05月19日 0 点赞 0 评论 504 浏览 评分:0.0
Hello, world! (C++代码) 摘要:解题思路:题目为两行输入,说明是多次循环读入的,所以按照要求转acsll码就行了,代码非常简洁注意事项:参考代码:#include <iostream>#include <string>using n…… 题解列表 2017年12月14日 0 点赞 0 评论 989 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int temp; while(scanf("%d",&temp)!=EO…… 题解列表 2020年04月18日 0 点赞 0 评论 704 浏览 评分: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 评论 1212 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年03月14日 0 点赞 0 评论 594 浏览 评分:0.0
Hello, world!-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { string str_string; int n_in…… 题解列表 2019年12月01日 0 点赞 0 评论 3840 浏览 评分: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 评论 877 浏览 评分: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 评论 960 浏览 评分:0.0