输入输出练习之第二个数字(小白易懂版) 摘要:解题思路:这道题还是很简单的了,从main函数开始,定义变量,最后再输入输出就好了。注意事项:在输入的格式中,“%d %d %d"中的格式中间有两个空格,用键盘敲入的时候,输入的数字中间也要有空格,不…… 题解列表 2021年11月12日 0 点赞 0 评论 463 浏览 评分:2.0
统计字符..... 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a=0,b=0,c=0,d=0; char ch; ch=getchar();…… 题解列表 2021年11月14日 0 点赞 0 评论 189 浏览 评分:2.0
P1000......21888545 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,sum; scanf("%d%d",&a,&b); sum=a+b; …… 题解列表 2021年11月14日 0 点赞 0 评论 200 浏览 评分:2.0
三角形判断(留着以后回头看) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a,b,c,max,min,mid; while(scanf("%d%d%d",&a,&…… 题解列表 2021年11月14日 0 点赞 0 评论 300 浏览 评分:2.0
以后可以回头看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h>int main(){ double x,y,d; while(scanf("%lf%lf"…… 题解列表 2021年11月14日 0 点赞 0 评论 245 浏览 评分:2.0
链表之报数问题 python解法 摘要:解题思路:注意事项:参考代码:n = int(input())ls = [0] * nj = 1; p = 0for i in range(n-1):#让9个人出局 while j < 3: …… 题解列表 2021年11月15日 0 点赞 0 评论 304 浏览 评分:2.0
信息学奥赛一本通T1252-走迷宫-数组标记地图题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b)){ int c[…… 题解列表 2021年11月16日 0 点赞 0 评论 475 浏览 评分:2.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项: #include <stdio.h>#define M 10//插入排序void insertSort(int arry[], int len){ int i; …… 题解列表 2021年11月19日 0 点赞 0 评论 202 浏览 评分:2.0
拆分位数 (C语言代码)字符倒着输出 摘要:解题思路:注意事项:参考代码: printf("%c %c %c", getchar(), getchar(), getchar());…… 题解列表 2021年11月20日 0 点赞 0 评论 298 浏览 评分:2.0
有规律的数列求和 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc=new Scanner(System.in); int num…… 题解列表 2021年11月23日 0 点赞 0 评论 344 浏览 评分:2.0