1477: 字符串输入输出函数 摘要:简单题。#include<iostream> using namespace std; int main() { double n; string s; co…… 题解列表 2022年01月01日 0 点赞 0 评论 212 浏览 评分:0.0
字符串输入输出函数,用cin,cout就行,printf不知道为什莫 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<iostream>#include <string>using namespace std;int main(){ …… 题解列表 2022年01月07日 0 点赞 0 评论 332 浏览 评分:0.0
字符串输入输出函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>float GetReal(float a){ printf("%.2f\n",a);}char GetString(char b[])…… 题解列表 2022年01月19日 0 点赞 0 评论 280 浏览 评分:0.0
字符串输入输出函数-题解 摘要:def GetReal(inpn): print(inpn) def GetString(inps): print(inps) def main(): inpn = …… 题解列表 2022年03月05日 0 点赞 0 评论 528 浏览 评分:0.0
字符串输入输出函数 摘要:```cpp #include using namespace std; double GetReal(double real){ cout…… 题解列表 2022年03月23日 0 点赞 0 评论 330 浏览 评分:0.0
字符串输入输出函数-题解(C语言) #这到题目有问题小心点 摘要:解题思路:注意事项:这到题目有问题小心点参考代码:#include<stdio.h> #include<string.h> void GetReal(char f[100]); void G…… 题解列表 2020年12月25日 0 点赞 0 评论 645 浏览 评分:0.0
字符串输入输出函数 (超简单)(c++) 摘要:解题思路:这题会不会?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;double a;int main(){ p…… 题解列表 2022年05月11日 0 点赞 0 评论 341 浏览 评分:0.0
字符串的输出(C++)语言 摘要:解题思路:其实在int main(){}下写两个函数会更简单,不用单独再写两个函数注意事项:参考代码:#include<iostream>#include<string>using namespace…… 题解列表 2022年05月11日 0 点赞 0 评论 465 浏览 评分:0.0
小南解题-字符串输入输出函数--41ms 摘要:'''2022年03月10日 22:05:22.157zgn946''' a=input()b=input() print('please in…… 题解列表 2022年06月27日 0 点赞 0 评论 227 浏览 评分:0.0
很简单的输入输出,按照格式来就可以了 摘要:解题思路:注意事项:有点不太明白这个问题的意义,可能是其他语言的练习题目吧我自己想太多了参考代码:def getreal(): nu=input() return nudef getstr…… 题解列表 2022年06月30日 0 点赞 0 评论 283 浏览 评分:0.0