1985 永远都是C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y; scanf("%d",&x); if(x<3) {y=2*x; }else if (x<2…… 题解列表 2021年11月02日 0 点赞 0 评论 230 浏览 评分:0.0
1980 永远都是C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x,y,y3; scanf("%d",&x); if(x>15) {y=(x-15)*3+30; p…… 题解列表 2021年11月02日 0 点赞 0 评论 394 浏览 评分:0.0
[编程入门]分段函数求值------Python 摘要:解题思路:注意事项:参考代码:x=int(input())if x>=10: print(3*x-11)elif x>=1: print(2*x-1)else: print(x)…… 题解列表 2021年11月02日 0 点赞 0 评论 1557 浏览 评分:8.9
字符串分类统计基础解法 摘要:解题思路:先输入字符串,然后统计英文字母、数字、空格、剩下的就是其他字符了。注意事项:注意字符要用单引号。要用与字符串有关的#include<stdio.h>.字符串最后有'\0',判…… 题解列表 2021年11月02日 0 点赞 0 评论 620 浏览 评分:9.9
[编程入门]温度转换------Python 摘要:解题思路:注意事项:参考代码:f=float(input())c=5*(f-32)/9print('c={0:.2f}'.format(c))…… 题解列表 2021年11月02日 0 点赞 5 评论 1213 浏览 评分:8.3
1955 成员C语言666分 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,m;float c; scanf ("%d %f %d",&a,&c,&b); m=(a*1…… 题解列表 2021年11月02日 0 点赞 0 评论 563 浏览 评分:0.0
1019: [编程入门]自由下落的距离计算(C语言) 摘要:解题思路:直接看代码把,注释挺详细的,先谢谢各位观看啦,哈哈哈哈哈哈哈哈哈参考代码:#includeint main(){ int N,i; //N表示弹跳次数,i为循环变量 dou…… 题解列表 2021年11月02日 0 点赞 0 评论 375 浏览 评分:9.9
1954 666cyuyan C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int m;float n; scanf ("%d",&m); n=50+0.4*m; printf ("%…… 题解列表 2021年11月02日 0 点赞 0 评论 200 浏览 评分:0.0
打印图案,简单易懂(C++) 摘要:解题思路:要什么图案就先找好注意事项:空格的输入,基础知识的应用参考代码:#include<stdio.h>int main(){ printf(" *\n"); printf(" * *\n");…… 题解列表 2021年11月02日 0 点赞 0 评论 809 浏览 评分:9.3
2001,好懂的方法 摘要:解题思路:勾股定理注意事项:或字符参考代码:#include <stdio.h>#include <math.h>int main(){ int a,b,c; scanf("%d%d%…… 题解列表 2021年11月02日 0 点赞 0 评论 513 浏览 评分:0.0