几行代码解决第一个Hello, world! (C语言代码) 摘要:解题思路:你们看到的屏幕回显出来的字符hello, 在白盒测试时,评测系统根本不会出现这种回显!你的输入是一个整体,在输入缓冲区!你的输出也是一个整体,在输出缓冲区!注意事项:注意缓冲区。参考代码:#…… 题解列表 2019年01月05日 0 点赞 1 评论 944 浏览 评分:7.3
Hello, world! (C++代码) 摘要:解题思路:利用强制类型转换注意事项:c++有默认的文件结束参考代码:#include<iostream>using namespace std;int main(){ int a; w…… 题解列表 2019年01月19日 0 点赞 0 评论 431 浏览 评分:0.0
Hello, world! (C语言代码) 摘要:题目并没有难度,记住一个小技巧,利用scanf的返回值来判断while的结束条件scanf返回值:当输入的结果与转义字符相同时,返回真,不然返回假(比如前面是%d 那么你应该输入一个整数,但是如果输入…… 题解列表 2019年02月17日 0 点赞 0 评论 685 浏览 评分: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语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[100]; int n=0; while(scanf("%d",&arr[n]…… 题解列表 2019年04月07日 0 点赞 0 评论 357 浏览 评分: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++代码)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++代码)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语言代码) 摘要:这道题我的思路很简单 char数组接收整个字符串 因为空格分隔 很容易转换成int数组 然后输出 ```c #include int main(){ char a=0, b[5000] = …… 题解列表 2019年10月11日 0 点赞 1 评论 1342 浏览 评分:8.4
Hello, world!-题解(Java代码) 摘要:```java import java.util.Scanner; /** * Hello World * http://www.dotcpp.com/oj/problem1083.ht…… 题解列表 2019年11月14日 0 点赞 0 评论 1529 浏览 评分:9.3