简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ printf(" * \n"); printf(" * * \n"); printf("*****\n")…… 题解列表 2021年08月11日 0 点赞 0 评论 184 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float a,b; scanf("%f",&a); b=50+0.4*a; printf("%.1f",b)…… 题解列表 2021年08月11日 0 点赞 0 评论 215 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,C,S; scanf("%d %d",&a,&b); printf("C:%d\nS:%d",…… 题解列表 2021年08月11日 0 点赞 0 评论 269 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a*a+b*b); re…… 题解列表 2021年08月11日 0 点赞 0 评论 166 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float r,s,p=3.1415926; scanf("%f",&r); s=p*r*r; printf(…… 题解列表 2021年08月11日 0 点赞 0 评论 224 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); printf("0%o %d 0x%x\n",a,a,a); r…… 题解列表 2021年08月11日 0 点赞 0 评论 211 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ printf("**************************\n"); printf("Hello W…… 题解列表 2021年08月11日 0 点赞 0 评论 194 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float c,F; scanf("%f",&F); c=5*(F-32)/9; printf("c=%.2f…… 题解列表 2021年08月11日 0 点赞 0 评论 226 浏览 评分:6.0
sort练习升序处理 摘要:解题思路:注意事项: sort(a,a+n);表示a数组升序; sort(a,a+n,greater<int>());表示a数…… 题解列表 2021年08月11日 0 点赞 0 评论 542 浏览 评分:9.9
最朴实无华(笨)的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,wei; int ge,shi,bai,qian,wan; scanf("%d",…… 题解列表 2021年08月11日 0 点赞 0 评论 673 浏览 评分:9.9