1035: [编程入门]自定义函数之字符类型统计(python) 摘要:### 代码如下 ~~~python a = [0] * 4 for i in input(): if i.isalpha(): a[0] += 1 e…… 题解列表 2024年10月15日 1 点赞 0 评论 464 浏览 评分:8.7
3008: 买笔题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; char c; int result; scanf("%d%d",&a…… 题解列表 2024年11月24日 2 点赞 1 评论 436 浏览 评分:8.7
题解 1196: 去掉空格 摘要:#include #include void fun(char str[]){ int j; int length = strlen(str); for (int …… 题解列表 2025年02月26日 3 点赞 0 评论 534 浏览 评分:8.7
C语言程序设计教程(第三版)课后习题6.2 (C语言描述和c++代码) 摘要:c实现#include <stdio.h>int main(){ char ch; int count_of_letter=0; int count_of_number=0; int count_of…… 题解列表 2017年06月08日 2 点赞 2 评论 1949 浏览 评分:8.8
优质题解 C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路以及注意事项:本题主要是if语句的应用,本题有两次判断,if()里面一次,else if()里面一次,最后的else不用加括号判断,因为前面的都不执行,就执行else后面的语句了。注意else…… 题解列表 2017年06月10日 54 点赞 253 评论 36962 浏览 评分:8.8
C语言考试练习题_一元二次方程 (C语言代码) 摘要:思路:如果b*b-4*a*c等于0,则两个根相等并等于负的2a分之b,如果b*b-4*a*c不等于0,则两个根不等,带入公式(-b-sqrt(b*b-4*a*c))/(2*a)答案:#include<…… 题解列表 2017年06月19日 4 点赞 3 评论 2308 浏览 评分:8.8
C语言程序设计教程(第三版)课后习题11.3 (C++代码) 摘要:#include <iostream>using namespace std;struct student{ string number; string name; float score[3];};…… 题解列表 2017年06月28日 2 点赞 0 评论 2339 浏览 评分:8.8
点我有惊喜!你懂得! 摘要:解题思路:愉快的心情才能使自己身心投入!每题笑话:刚在拉面馆,一奇葩对服务员说:来碗拉面,拉细点,多放香菜,香菜多放叶少放秆,牛肉切片别切块,还有面多煮会儿!服务员:还有别的要求吗?那个说:没了。服务…… 题解列表 2017年08月08日 3 点赞 1 评论 1737 浏览 评分:8.8
WU-小九九 (C++代码) 摘要:解题思路:关键是%-2d参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { for(int …… 题解列表 2017年12月10日 6 点赞 18 评论 2159 浏览 评分:8.8
WU-C语言程序设计教程(第三版)课后习题9.1 (C语言代码) 摘要:#include<stdio.h> #define S(a,b)a=a+b;b=a-b;a=a-b int main() { int a,b; scanf("%d%d",&a,&b); …… 题解列表 2017年12月06日 1 点赞 2 评论 1134 浏览 评分:8.8