字符串输入输出函数-题解(C语言) #这到题目有问题小心点 摘要:解题思路:注意事项:这到题目有问题小心点参考代码:#include<stdio.h> #include<string.h> void GetReal(char f[100]); void G…… 题解列表 2020年12月25日 0 点赞 0 评论 315 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:```c #include #include void GetReal() { char a[1000]; scanf("%s",&a); printf("%…… 题解列表 2020年03月12日 0 点赞 0 评论 400 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要: 其实这个挺简单的,没什么难度,但是一定要注意“空格”! 题目描述的:" please input a number:\n”和" please input a string:\n"。 …… 题解列表 2020年03月16日 0 点赞 0 评论 460 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:```cpp #include #include using namespace std; //GetReal和GetString void GetReal(double *n){ …… 题解列表 2020年03月25日 0 点赞 0 评论 437 浏览 评分:0.0
字符串输入输出函数-题解(C++代码) 摘要:**字符串的输入输出函数** 第一种 ```cpp #include #include using namespace std; char N[105]; char Str[105]…… 题解列表 2020年04月15日 0 点赞 0 评论 468 浏览 评分:0.0
字符串输入输出函数-题解(C++代码) 摘要:```cpp #include using namespace std; #include #include void GetReal() { cout…… 题解列表 2020年05月01日 0 点赞 0 评论 426 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:## 解题思路 题目要求利用函数完成输入和输出,并显示提示字样。 利用字符数组来读取输入的字符,并进行输出,在函数中读入,在主函数中读出。 编写函数的时候,利用指针传参,对数据数据进行读入,在主…… 题解列表 2020年06月27日 0 点赞 0 评论 453 浏览 评分:0.0
字符串输入输出函数-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args){ …… 题解列表 2020年06月28日 0 点赞 0 评论 279 浏览 评分:0.0
很简单的输入输出,按照格式来就可以了 摘要:解题思路:注意事项:有点不太明白这个问题的意义,可能是其他语言的练习题目吧我自己想太多了参考代码:def getreal(): nu=input() return nudef getstr…… 题解列表 2022年06月30日 0 点赞 0 评论 146 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main (){ char a[10],b[10]; …… 题解列表 2020年08月09日 0 点赞 0 评论 203 浏览 评分:0.0