字符串输入输出函数-题解(Python代码) 摘要:解题思路:注意事项:参考代码:def get1(): a=float(input("please input a number:\n")) return adef get2(): b…… 题解列表 2020年11月18日 0 点赞 2 评论 997 浏览 评分:9.9
字符串输入输出函数-题解(Python代码) 摘要:代码:print("please input a number:") str1 = input() print("please input a string:") str2 = input() …… 题解列表 2020年09月10日 0 点赞 1 评论 774 浏览 评分:7.3
字符串输入输出函数-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; string a, b; int main(){ pri…… 题解列表 2020年08月13日 0 点赞 0 评论 572 浏览 评分:9.9
字符串输入输出函数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main (){ char a[10],b[10]; …… 题解列表 2020年08月09日 0 点赞 0 评论 356 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码)~~~~~~~思路简单直接,易理解 摘要:```c #include void GetReal(char a[]) { printf("please input a number:\n"); gets(a); } void …… 题解列表 2020年07月26日 0 点赞 0 评论 690 浏览 评分:9.9
字符串输入输出函数-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args){ …… 题解列表 2020年06月28日 0 点赞 0 评论 467 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:## 解题思路 题目要求利用函数完成输入和输出,并显示提示字样。 利用字符数组来读取输入的字符,并进行输出,在函数中读入,在主函数中读出。 编写函数的时候,利用指针传参,对数据数据进行读入,在主…… 题解列表 2020年06月27日 0 点赞 0 评论 645 浏览 评分:0.0
字符串输入输出函数-题解(C++代码) 摘要:```cpp #include using namespace std; #include #include void GetReal() { cout…… 题解列表 2020年05月01日 0 点赞 0 评论 612 浏览 评分:0.0
字符串输入输出函数-题解(C++代码) 摘要:**字符串的输入输出函数** 第一种 ```cpp #include #include using namespace std; char N[105]; char Str[105]…… 题解列表 2020年04月15日 0 点赞 0 评论 904 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:```cpp #include #include using namespace std; //GetReal和GetString void GetReal(double *n){ …… 题解列表 2020年03月25日 0 点赞 0 评论 649 浏览 评分:0.0