Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; char c; while(scanf("%d",&n)!=EOF) { …… 题解列表 2017年08月27日 0 点赞 0 评论 1432 浏览 评分: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 评论 403 浏览 评分:9.9
C与C++的共用解法 摘要: #include #include using namespace std; int main() { int s; //whi…… 题解列表 2022年01月28日 0 点赞 1 评论 504 浏览 评分:9.9
1083: Hello, world! 摘要:解题思路:什么 b 题目啊,我一直在想怎么才能输入一串整数后自动结束,因为题目强调了没有 EOF,我还以为是有什么非常规接收输入的办法,结果随手提交发现通过了。那你写那么多条件干嘛?注意事项:不是很懂…… 题解列表 2022年04月23日 0 点赞 0 评论 392 浏览 评分:9.9
1083: Hello, world! 摘要:```cpp #include using namespace std; int main() { int a; while(cin>>a) cout…… 题解列表 2022年08月28日 0 点赞 0 评论 254 浏览 评分:9.9
Hello, world!-题解(C++代码)关于EOF.... 摘要:解题思路:注意事项: 关于EFO,是C语言stdio.h中的一个宏定义,赋值为-1 但不能直接在你的程序里写上-1,因为能在键盘上输入的东西,ascll码都是 >=0 的, 所以,可…… 题解列表 2020年08月13日 0 点赞 0 评论 1100 浏览 评分:9.7
Hello, world!-题解(C++代码) 极简低奢的c++代码 它不香嘛~~~ 摘要: #include #include using namespace std; int main() { int n; …… 题解列表 2020年04月27日 0 点赞 4 评论 2393 浏览 评分: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 评论 400 浏览 评分:9.5
Hello, world!-题解(C语言)(三行解决问题)(对~scanf("",)中的“~”详细解释,新手福利!) 摘要:```c #include void main() { int a; while (~scanf("%d",&a))//“~”意为取反,下面有对此的解释。 //也可写为while(s…… 题解列表 2020年01月24日 0 点赞 11 评论 3807 浏览 评分:9.4
Hello, world!-题解(Java代码) 摘要:```java import java.util.Scanner; /** * Hello World * http://www.dotcpp.com/oj/problem1083.ht…… 题解列表 2019年11月14日 0 点赞 0 评论 1545 浏览 评分:9.3