字符串输入输出函数-题解(C语言代码)~~~~~~~思路简单直接,易理解 摘要:```c #include void GetReal(char a[]) { printf("please input a number:\n"); gets(a); } void …… 题解列表 2020年07月26日 0 点赞 0 评论 437 浏览 评分:9.9
字符串输入输出函数-题解(C 语言代码) 摘要:```c #include void GetReal(double *a); // 输入变量并改变变量的值 void GetString(char *arr); // 输入字符数…… 题解列表 2021年10月19日 0 点赞 0 评论 369 浏览 评分:9.9
字符串输入输出函数 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.io.InputStream; import java.util.Scanner; public…… 题解列表 2018年02月24日 0 点赞 0 评论 1078 浏览 评分:9.9
字符串输入输出函数-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; string a, b; int main(){ pri…… 题解列表 2020年08月13日 0 点赞 0 评论 360 浏览 评分:9.9
字符串输入输出函数 (C语言代码) 摘要:解题思路:注意事项:空格恶心死了参考代码:#include<stdio.h> #include<stdlib.h> char* GetReal(); char* GetString(); in…… 题解列表 2017年10月19日 2 点赞 3 评论 2747 浏览 评分:9.9
1477: 字符串输入输出函数(格式错误竟然应为copy多了空格)(C语言C++两种写法) 摘要::cyclone:不要复制题目中的"please input a number:\n")这个中间有两个空格 **C语言版:** ```c #include int main() { …… 题解列表 2022年02月10日 0 点赞 1 评论 100 浏览 评分:9.9
字符串输入输出函数-题解(Java代码)机器改卷还是有缺陷的 摘要:解题思路:注意事项:参考代码:import java.util.Arrays; import java.util.Scanner; public class Main{ //声明GetRe…… 题解列表 2021年01月07日 0 点赞 0 评论 356 浏览 评分:9.9
字符串输入输出函数-题解(Python代码) 摘要:解题思路:注意事项:参考代码:def get1(): a=float(input("please input a number:\n")) return adef get2(): b…… 题解列表 2020年11月18日 0 点赞 2 评论 519 浏览 评分:9.9
字符串输入输出函数-题解(Java代码)这题真有意思!! 摘要: Scanner in=new Scanner(System.in); double a=in.nextDouble(); String s=in.next(); System.o…… 题解列表 2021年01月10日 0 点赞 0 评论 283 浏览 评分:9.9
字符串输入输出函数(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void GetReal(float *n){ printf("please input a number:\n"); s…… 题解列表 2021年03月13日 0 点赞 0 评论 509 浏览 评分:9.9