Hello, world!(怀氏c++) 摘要:解题思路:把数字转换成ASCI码值,就是对应的char类型值注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; …… 题解列表 2022年10月24日 0 点赞 0 评论 220 浏览 评分:9.9
c++三行题解 摘要:解题思路:使用强转输出数据注意事项:while的循环读入参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int…… 题解列表 2022年12月07日 0 点赞 0 评论 241 浏览 评分:9.9
吾乃元始天尊!1083: Hello, world! 摘要:#### 输入然后输出(简单so easy:beers:) ```cpp #include using namespace std; int main() { int n; whil…… 题解列表 2022年12月24日 0 点赞 0 评论 285 浏览 评分: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 评论 265 浏览 评分:9.9
题目 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 评论 520 浏览 评分:9.9
用vector容器写的 摘要:解题思路:原题链接:Hello,world!注意事项:熟悉vector的用法参考代码:#include<iostream>#include<vector>using namespace std;int…… 题解列表 2023年05月27日 0 点赞 0 评论 281 浏览 评分:9.9
Hello, world!-题解(C++代码)关于EOF.... 摘要:解题思路:注意事项: 关于EFO,是C语言stdio.h中的一个宏定义,赋值为-1 但不能直接在你的程序里写上-1,因为能在键盘上输入的东西,ascll码都是 >=0 的, 所以,可…… 题解列表 2020年08月13日 0 点赞 0 评论 1272 浏览 评分:9.7
Hello, world!-题解(C++代码) 极简低奢的c++代码 它不香嘛~~~ 摘要: #include #include using namespace std; int main() { int n; …… 题解列表 2020年04月27日 0 点赞 4 评论 2458 浏览 评分:9.6
Hello, world!-题解(python代码) 摘要:解题思路:注意事项:参考代码:lst=list(map(str,input().split()))lst2=list(map(str,input().split()))lst.extend(lst2)…… 题解列表 2022年01月26日 0 点赞 0 评论 524 浏览 评分:9.5
Hello, world!-题解(C语言)(三行解决问题)(对~scanf("",)中的“~”详细解释,新手福利!) 摘要:```c #include void main() { int a; while (~scanf("%d",&a))//“~”意为取反,下面有对此的解释。 //也可写为while(s…… 题解列表 2020年01月24日 0 点赞 11 评论 4011 浏览 评分:9.4