成绩排序(用结构体来做) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct student { char name[20]; int…… 题解列表 2023年10月09日 0 点赞 0 评论 200 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[14]; gets(str); str[strlen(st…… 题解列表 2023年10月09日 0 点赞 0 评论 369 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路: p2 保持在p1前面 ,移动p2,进行操作注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define len sizeof(num)typ…… 题解列表 2023年10月09日 0 点赞 0 评论 144 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int sum=0; int n,a[100],i=0,k=1,l=0; while (s…… 题解列表 2023年10月09日 1 点赞 0 评论 198 浏览 评分:0.0
奖学金(结构体实在是太好用啦) 摘要:解题思路:注意事项:注意只有前五名才有奖学金参考代码:#include<stdio.h> struct student { int sno; int Chinese; …… 题解列表 2023年10月10日 0 点赞 0 评论 184 浏览 评分:0.0
津津的储蓄计划java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Test { public static void main(String[] args…… 题解列表 2023年10月10日 0 点赞 0 评论 236 浏览 评分:0.0
数组记录血压 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class The_2814 { public static void main(String[] …… 题解列表 2023年10月10日 0 点赞 0 评论 166 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void add(int a[], int m, int b[], int n){ int i; for (i = 0; i < n; …… 题解列表 2023年10月10日 0 点赞 0 评论 344 浏览 评分:0.0
简单粗暴好理解 摘要:解题思路:单独加一行一列来保证每个格子的八个相邻位置都是干净的。参考代码:#include<iostream> using namespace std; int main() { …… 题解列表 2023年10月10日 0 点赞 0 评论 195 浏览 评分:0.0
排序(注意是有多组输入数据,每输入完一组数据要换行) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; while(~scanf("%d",&n))//多组输入 { int a[…… 题解列表 2023年10月10日 0 点赞 0 评论 143 浏览 评分:0.0