Hello, world!-题解(Python代码) 摘要:python中没有像c语言一样直接判断输入EOF的语句所以用sys.stdin来代替EOF输入 import sys while True: line = sys.…… 题解列表 2019年11月24日 0 点赞 2 评论 1454 浏览 评分:9.0
Hello, world!-题解(Python代码) python 摘要:chr() 用一个范围在 range(256)内的(就是0~255)整数作参数,**返回一个对应的字符** ```python def f(arr):#定义函数 arr = [int(i…… 题解列表 2019年11月22日 0 点赞 0 评论 1093 浏览 评分:4.8
Hello, world!-题解(Java代码) 摘要:```java import java.util.Scanner; /** * Hello World * http://www.dotcpp.com/oj/problem1083.ht…… 题解列表 2019年11月14日 0 点赞 0 评论 1528 浏览 评分:9.3
Hello, world!-题解(C语言代码) 摘要:这道题我的思路很简单 char数组接收整个字符串 因为空格分隔 很容易转换成int数组 然后输出 ```c #include int main(){ char a=0, b[5000] = …… 题解列表 2019年10月11日 0 点赞 1 评论 1342 浏览 评分:8.4
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++代码)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语言代码) 摘要:解题思路: 用while(scanf("%d", &a[i]) != EOF)来输入数字,存储到数组a中 通过格式控制说明%c来将整数转化为字符常量 ```c #include int …… 题解列表 2019年07月17日 0 点赞 0 评论 502 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[100]; int n=0; while(scanf("%d",&arr[n]…… 题解列表 2019年04月07日 0 点赞 0 评论 356 浏览 评分: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语言代码) 摘要:题目并没有难度,记住一个小技巧,利用scanf的返回值来判断while的结束条件scanf返回值:当输入的结果与转义字符相同时,返回真,不然返回假(比如前面是%d 那么你应该输入一个整数,但是如果输入…… 题解列表 2019年02月17日 0 点赞 0 评论 683 浏览 评分:0.0