编写题解 1477: 字符串输入输出函数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>void printnum(){ cout<<"plea…… 题解列表 2022年04月18日 0 点赞 0 评论 237 浏览 评分:0.0
字符串输入输出函数-题解(C++代码) 摘要:```cpp #include using namespace std; #include #include void GetReal() { cout…… 题解列表 2020年05月01日 0 点赞 0 评论 613 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:## 解题思路 题目要求利用函数完成输入和输出,并显示提示字样。 利用字符数组来读取输入的字符,并进行输出,在函数中读入,在主函数中读出。 编写函数的时候,利用指针传参,对数据数据进行读入,在主…… 题解列表 2020年06月27日 0 点赞 0 评论 645 浏览 评分:0.0
字符串输入输出函数-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args){ …… 题解列表 2020年06月28日 0 点赞 0 评论 467 浏览 评分:0.0
字符串输入输出函数-题解(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
字符串输入输出函数 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]…… 题解列表 2017年07月15日 2 点赞 1 评论 885 浏览 评分:0.0
字符串输入输出函数-题解(C语言代码) 摘要:解题思路:输入两个字符串并在输入之前输出提示信息即可注意事项:注意输入的提示信息别漏了什么,这个给我整乐了参考代码:#include <stdio.h> int GetReal(char a[100…… 题解列表 2021年02月05日 0 点赞 0 评论 544 浏览 评分:0.0
1477: 字符串输入输出函数 摘要:解题思路:看别人解题。屑题目,我总算理解为啥开发天天和产品撕逼了。注意事项:0、您瞧瞧下面代码,我吐了1、提示信息在输入后、输出结果前显示!!!2、从题目复制的提示信息,每个 间隔两空格,而答案只…… 题解列表 2021年03月02日 0 点赞 0 评论 290 浏览 评分:0.0
函数的调用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void GetReal(char *a){ printf("please input a number:\n"); get…… 题解列表 2021年03月30日 0 点赞 0 评论 247 浏览 评分:0.0
题解 1477: 字符串输入输出函数 摘要:解题思路:记录做法注意事项:参考代码:#include <stdio.h>/* run this program using the console pauser or add your own ge…… 题解列表 2021年10月22日 0 点赞 0 评论 334 浏览 评分:0.0