关于scanf是否接收空格,回车和tab的声明;C语言; 摘要:解题思路: 看题 不多说;注意事项: 这里只是说一下 scanf 是否接收空格和回车; 对于字符型输入的话 &nb 题解列表 2018年02月07日 2 点赞 0 评论 1527 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝 摘要:```cpp #include using namespace std; int main(){ char a[400]; int n,m; cin>>n; cin>>a; …… 题解列表 2023年06月04日 0 点赞 0 评论 105 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:#include <stdio.h> int a[100],b[100]; int i,k,h,q,w,e; int fun(int *q,int *w) { e = *q; …… 题解列表 2018年05月05日 0 点赞 0 评论 540 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝 (C语言代码) 摘要:解题思路: 字符串拷贝其实是可以直接改变循环输出就ok 注意事项: 循环的开始的值参考代码:#include<stdio.h>#include<malloc.h> int main(…… 题解列表 2019年04月17日 0 点赞 0 评论 252 浏览 评分:0.0
编写题解 1048: [编程入门]自定义函数之字符串拷贝--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int main(){ …… 题解列表 2022年03月08日 0 点赞 0 评论 327 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:定义两个字符数组,将字符串输入其中一个数组,运用循环将给定的字符赋值给另一个字符数组,实现该功能。注意事项:参考代码:#include<stdio.h>int main(){ int n…… 题解列表 2018年07月25日 0 点赞 0 评论 460 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,j=0; char a[100],b[100]; scanf("%d",&n); getch…… 题解列表 2021年11月30日 0 点赞 0 评论 273 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:#include<bits/stdc++.h> using namespace std; int main() { int length; cin >> length…… 题解列表 2021年12月21日 0 点赞 0 评论 110 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝(python) 摘要:1048: [编程入门]自定义函数之字符串拷贝 从索引`m-1`开始切片即可 ~~~pythjon input() s = input() m = int(input()) print…… 题解列表 2024年10月24日 0 点赞 0 评论 51 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:建议自己不看别人,自己先动手,遇到的问题都是对自己的有益的参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>void f(cha…… 题解列表 2017年07月22日 7 点赞 0 评论 1383 浏览 评分:0.0