C语言入门scanf和printf,浮点数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double F,T; scanf("%lf",&F); T=5.0*(F-32.0)/9.0;…… 题解列表 2022年06月20日 0 点赞 0 评论 420 浏览 评分:2.0
getchar(ASCII的简单应用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a,b,c,d,e; a=getchar(); b=getchar(); c=g…… 题解列表 2022年06月20日 0 点赞 0 评论 683 浏览 评分:6.0
超多变量的暴力拆解 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h>int main(){ int a,b,c,i,j,k,sum1=0,sum2=0,d=1,e=1…… 题解列表 2022年06月20日 0 点赞 0 评论 410 浏览 评分:9.9
自由下落 暴力拆解 摘要:#include<stdio.h>#include<math.h>int main(){ int i; float c,sum=0,sum2; double m,n; scanf("%…… 题解列表 2022年06月20日 0 点赞 0 评论 376 浏览 评分:0.0
自由下落函数法 摘要:解题思路:注意事项:参考代码:# include<stdio.h># include<math.h>void ReBack(int M,int N);int main(){ int M,N; …… 题解列表 2022年06月20日 0 点赞 0 评论 349 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char st[100],st2[100]; int n,m…… 题解列表 2022年06月20日 0 点赞 0 评论 369 浏览 评分:0.0
不一样的思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; int i=0; int net…… 题解列表 2022年06月20日 0 点赞 0 评论 589 浏览 评分:9.9
题解 1392: 川哥的吩咐 摘要:1•**这里是前置0的新方法,虽然代码较长,但思路清晰啊** /*------------------------------------------------------------…… 题解列表 2022年06月20日 0 点赞 0 评论 642 浏览 评分:9.9
猴子摘桃 优化版 摘要:解题思路:其实这题就是正向数学解题思路的倒推注意事项:参考代码:include<stdio.h>int main(){ int N,s=1; scanf("%d",&N); for(i…… 题解列表 2022年06月20日 0 点赞 0 评论 407 浏览 评分:9.9
看一眼就能懂的代码(JAVA) 摘要:解题思路: 参考代码: import java.util.Scanner; public class Main { static int arr[][]; static …… 题解列表 2022年06月19日 0 点赞 0 评论 599 浏览 评分:9.9