字符串的输出(C++)语言 摘要:解题思路:其实在int main(){}下写两个函数会更简单,不用单独再写两个函数注意事项:参考代码:#include<iostream>#include<string>using namespace…… 题解列表 2022年05月11日 0 点赞 0 评论 124 浏览 评分:0.0
小南解题-字符串输入输出函数--41ms 摘要:'''2022年03月10日 22:05:22.157zgn946''' a=input()b=input() print('please in…… 题解列表 2022年06月27日 0 点赞 0 评论 65 浏览 评分:0.0
很简单的输入输出,按照格式来就可以了 摘要:解题思路:注意事项:有点不太明白这个问题的意义,可能是其他语言的练习题目吧我自己想太多了参考代码:def getreal(): nu=input() return nudef getstr…… 题解列表 2022年06月30日 0 点赞 0 评论 102 浏览 评分:0.0
编写题解 1477: 字符串输入输出函数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void GetReal(); void GetString(); int main(int argc, char *ar…… 题解列表 2022年11月14日 0 点赞 0 评论 43 浏览 评分:0.0
字符串输入输出函数--格式错误问题解决!!! 摘要:不要复制题目描述的:please input a number:\nplease input a string:\n因为样例输出里的语句只有一个空格please input a numbe…… 题解列表 2023年01月02日 0 点赞 0 评论 38 浏览 评分:0.0
字符串输入输出函数(C语言) 摘要:#include<stdio.h> void fun(float a, char str[]) { char* p = str; float* q = &a; printf("plea…… 题解列表 2023年01月06日 0 点赞 0 评论 61 浏览 评分:0.0
简简单单无脑列举 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void GetReal(float x){ cout << x << endl;}void …… 题解列表 2023年01月11日 0 点赞 0 评论 65 浏览 评分:0.0
1477: 字符串输入输出函数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<string>using namespace std;int shu(string…… 题解列表 2023年01月20日 0 点赞 0 评论 68 浏览 评分:0.0
编写题解 1477: 字符串输入输出函数 摘要:编写题解 1477: 字符串输入输出函数 ``` #include using namespace std; int main() { string s1,s2; cin>>s1>>…… 题解列表 2023年02月15日 0 点赞 0 评论 137 浏览 评分:0.0
python字符串输入输出函数 摘要:def GetReal(): x=input() return xdef GetString(): X=input() return Xdef main(): while…… 题解列表 2023年02月19日 0 点赞 0 评论 87 浏览 评分:9.9