字符串输入输出函数-题解(C++代码) 摘要:**字符串的输入输出函数** 第一种 ```cpp #include #include using namespace std; char N[105]; char Str[105]…… 题解列表 2020年04月15日 0 点赞 0 评论 340 浏览 评分:0.0
编写题解 1477: 字符串输入输出函数 摘要:编写题解 1477: 字符串输入输出函数 ``` #include using namespace std; int main() { string s1,s2; cin>>s1>>…… 题解列表 2023年02月15日 0 点赞 0 评论 137 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要: 其实这个挺简单的,没什么难度,但是一定要注意“空格”! 题目描述的:" please input a number:\n”和" please input a string:\n"。 …… 题解列表 2020年03月16日 0 点赞 0 评论 336 浏览 评分:0.0
字符串的输出(C++)语言 摘要:解题思路:其实在int main(){}下写两个函数会更简单,不用单独再写两个函数注意事项:参考代码:#include<iostream>#include<string>using namespace…… 题解列表 2022年05月11日 0 点赞 0 评论 124 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:## 解题思路 题目要求利用函数完成输入和输出,并显示提示字样。 利用字符数组来读取输入的字符,并进行输出,在函数中读入,在主函数中读出。 编写函数的时候,利用指针传参,对数据数据进行读入,在主…… 题解列表 2020年06月27日 0 点赞 0 评论 372 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void GetReal(float*a){ printf ("please input a number:\n"); scanf ("…… 题解列表 2024年11月16日 0 点赞 0 评论 134 浏览 评分:0.0
字符串输入输出函数,用cin,cout就行,printf不知道为什莫 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<iostream>#include <string>using namespace std;int main(){ …… 题解列表 2022年01月07日 0 点赞 0 评论 128 浏览 评分:0.0
字符串输入输出函数-题解(Java代码)这题有毒吧 摘要: Scanner in=new Scanner(System.in); double a=in.nextDouble(); String s=in.next(); …… 题解列表 2019年12月19日 0 点赞 0 评论 528 浏览 评分:0.0
WU-字符串输入输出函数 (C++代码) 摘要:参考代码:#include<iostream> #include<cstdio> #include<cstring> using namespace std; void GetReal(dou…… 题解列表 2017年12月20日 3 点赞 0 评论 948 浏览 评分:0.0
1477: 字符串输入输出函数 摘要:解题思路:看别人解题。屑题目,我总算理解为啥开发天天和产品撕逼了。注意事项:0、您瞧瞧下面代码,我吐了1、提示信息在输入后、输出结果前显示!!!2、从题目复制的提示信息,每个 间隔两空格,而答案只…… 题解列表 2021年03月02日 0 点赞 0 评论 99 浏览 评分:0.0