[编程入门]温度转换 摘要:解题思路:注意事项:参考代码:f = float(input())c = 5*(f-32)/9print('c=%.2f'%c)…… 题解列表 2022年01月17日 0 点赞 0 评论 436 浏览 评分:6.0
结构体之成绩记录 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>struct infor{char num[100];char name[100];int m…… 题解列表 2022年01月17日 0 点赞 0 评论 349 浏览 评分:0.0
结构体时间设计C语言 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>struct date{int y;int m;int d;};int isrun(int y…… 题解列表 2022年01月17日 0 点赞 0 评论 172 浏览 评分:0.0
电报加密C语言 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char str[100]; gets(str); …… 题解列表 2022年01月17日 0 点赞 0 评论 493 浏览 评分:0.0
校门外的树 c++ 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int L,M; cin>>L>>M; bool a[L+1]={f…… 题解列表 2022年01月17日 0 点赞 0 评论 191 浏览 评分:0.0
[编程入门]自定义函数之字符串反转 摘要:解题思路:1.依次获取字符串的值,并将非空格的字符用数组接收;2.将数组接收到的字符倒序输出;注意事项:定义数组的类型;循环结构,及退出条件写正确;参考代码:#include<stdio.h>char…… 题解列表 2022年01月17日 0 点赞 0 评论 198 浏览 评分:0.0
去掉空格C语言 摘要:#include<stdio.h>#include<string.h>int main(){ char str[100],str1[100];int i,k=0; while(gets(s…… 题解列表 2022年01月17日 0 点赞 0 评论 144 浏览 评分:0.0
优质题解 蓝桥杯基础练习VIP-芯片测试-题解(Python代码) 摘要:## 1. 解题思路 1.好芯片`能正确给出被测试芯片是好还是坏`,所以好芯片的测试结果都是相同的 2.已知`好芯片比坏芯片多`,所以可以测试结果相同的芯片中最多的一定是好芯片 ## 2. 代码…… 题解列表 2022年01月17日 1 点赞 2 评论 691 浏览 评分:6.7
1017: [编程入门]完数的判断(避坑 摘要:```c #include #include #define max int main() { int n,arr[1001]={0};//arr得够大 scanf…… 题解列表 2022年01月17日 0 点赞 0 评论 220 浏览 评分:0.0
筛选N以内的素数 摘要:解题思路:双层循坏,只要第二层循环结束,j=i,就代表在j之前没有可以被i整除的数,那么它就是素数。注意事项:从2 开始参考代码:#include <stdio.h>int main(){ int…… 题解列表 2022年01月17日 0 点赞 0 评论 145 浏览 评分:0.0