结构体之成绩记录(参考置顶,仅作记录) 摘要:#include<stdio.h> #include<mm_malloc.h> typedef struct student_info { char s_id[16]; …… 题解列表 2021年07月19日 0 点赞 0 评论 264 浏览 评分:0.0
1010:超简单的小学数学利润计算问题(错误率高达80%,注意审题) 摘要:解题思路:先输入一个数字,然后通过这个数字的范围来决定这个数字的利润最终提成,最后输出利润提成注意事项:题目有很多字,注意审题,如果还不懂可以去编译器练习增加理解参考代码:#include <stdi…… 题解列表 2021年07月19日 0 点赞 1 评论 222 浏览 评分:6.0
[编程入门]选择排序 c语言 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { int i,t,j,n; int array[10]; for(n=0;n<10;n++){ …… 题解列表 2021年07月19日 0 点赞 0 评论 187 浏览 评分:4.0
这是杖举吗? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ enum play {a=-1,b,c}; int p1,p2,x; scanf("%d%d…… 题解列表 2021年07月19日 0 点赞 0 评论 376 浏览 评分:9.9
宝,我今天用switch了 摘要:解题思路:注意事项:1.符号的定义就是%c而不是%d!!!2.输入%d和%c之间要有空格哦!!!3.%c对应的是单个字符 %s对应的是字符串参考代码:#include<stdio.h>int main…… 题解列表 2021年07月19日 0 点赞 3 评论 581 浏览 评分:9.9
sinez之吻----------------------------------- 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int count = 1;int A(int n) { if (count == n ) { printf("sin(%d", …… 题解列表 2021年07月18日 0 点赞 0 评论 477 浏览 评分:9.9
编写题解 1001: [编程入门]第一个HelloWorld程序! 摘要:解题思路:输出注意事项:换行参考代码:111111111111111111111111111111111111111111111111111111111111111111111111111111111…… 题解列表 2021年07月18日 0 点赞 0 评论 238 浏览 评分:0.0
题解 1162: 密码 摘要:参考代码:#include<stdio.h>#include<string.h>int main(){ int x; scanf("%d",&x); getchar(); while(…… 题解列表 2021年07月18日 0 点赞 0 评论 225 浏览 评分:0.0
大哥我不会用链表存储,呜呜呜 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,sum1=0,sum2=0,n,a[100],b[100]; scanf("%d",&n); for…… 题解列表 2021年07月17日 0 点赞 0 评论 359 浏览 评分:7.0