题解 1196: 去掉空格 摘要:参考代码:#include<stdio.h>#include<string.h>#define N 80 typedef char str[N]; //重定义一个含有80个元素的字符数组 v…… 题解列表 2021年10月22日 0 点赞 1 评论 692 浏览 评分:9.9
结构体之时间设计 摘要:解题思路:先定义时间结构体:struct time{ int year; int month; int day; }; 定义主函数,和结构体联系起来: int ma…… 题解列表 2021年10月22日 0 点赞 0 评论 291 浏览 评分:9.9
1148: C语言训练-计算1977!*-题解(python) 摘要:解题思路:注意事项:参考代码:a = 1977s = 1while a: s *= a a -= 1print(s)…… 题解列表 2021年10月22日 0 点赞 0 评论 307 浏览 评分:0.0
台球碰撞-题解(python代码) 摘要:解题思路:将台球的整个运动过程沿水平和竖直两个方向分解,分别求出末横坐标M和末纵坐标N参考代码:#台球碰撞 from math import * def REAL(p,q): if p<…… 题解列表 2021年10月21日 0 点赞 0 评论 834 浏览 评分:8.0
编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f; for(a=100;a<=999;a++) { b=a%10…… 题解列表 2021年10月21日 0 点赞 0 评论 631 浏览 评分:0.0
编写题解 1015: [编程入门]求和训练 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int i,d,u; float result=0.0,o=0.0,p=0.0…… 题解列表 2021年10月21日 0 点赞 0 评论 355 浏览 评分:0.0
题解 1475: 蓝桥杯基础练习VIP-高精度加法 摘要:解题思路:这个循环很有意思注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[105]; char b[105]…… 题解列表 2021年10月21日 0 点赞 0 评论 333 浏览 评分:0.0
编写题解 1125: C语言训练-委派任务* 摘要:解题思路:恶心的题目利用1和0表示去或者不去,循环一直套,判断条件稍微注意一点就好注意事项:参考代码:import java.util.Scanner;public class Main { p…… 题解列表 2021年10月21日 0 点赞 1 评论 457 浏览 评分:9.9
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long a=1,n,s=0,i;scanf("%ld",&n);for(i=1;i<=n;i++){ a*=i…… 题解列表 2021年10月21日 0 点赞 0 评论 584 浏览 评分:0.0
电导流的矩形(C语言) 摘要: 电导流的矩形(C语言) #include int main() { #include int main() { int i,n,x,y,x…… 题解列表 2021年10月21日 0 点赞 0 评论 370 浏览 评分:9.9