1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#defineLEN100//最大长度&nbsp;typedefstructstu{charid[10];charn…… 题解列表 2021年03月01日 0 点赞 0 评论 126 浏览 评分:0.0
求平方和 c语言 摘要:解题思路:没有啥思路用手就行。注意事项:注意学好数学反复复习不然你还要去百度差真丢脸。参考代码:#include<stdio.h>intmain(){inta,b,c;scanf(&quo…… 题解列表 2021年03月01日 0 点赞 0 评论 127 浏览 评分:0.0
编程入门]打印图案 c语言 摘要:解题思路:没啥思路有手就行。注意事项:注意下面是五个米。参考代码:#include<stdio.h>voidmain(){printf("&nbsp;*\n")…… 题解列表 2021年03月01日 0 点赞 1 评论 137 浏览 评分:6.0
helloworeld没有啥有手就可以 摘要:解题思路:没有思路用手打就可以。注意事项:注意看题目。参考代码:#include<stdio.h>voidmain(){printf("*********************…… 题解列表 2021年03月01日 0 点赞 0 评论 157 浏览 评分:9.0
打印图案 摘要:#include<stdio.h>voidmain(){&nbsp;&nbsp;printf("&nbsp;*\n");&nbsp;&a…… 题解列表 2021年03月01日 0 点赞 2 评论 987 浏览 评分:8.7
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedefstructdate{intyear,month,day;}D;intmain(){Dd;inttotal=0…… 题解列表 2021年03月01日 0 点赞 0 评论 119 浏览 评分:0.0
Hello World! 摘要:#include<stdio.h>voidmain(){&nbsp;&nbsp;printf("**************************\n"…… 题解列表 2021年03月01日 0 点赞 0 评论 118 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#defineLEN100intmain(){charstr[LEN]={&#39;\0&#39;},res…… 题解列表 2021年03月01日 0 点赞 0 评论 95 浏览 评分:0.0
定义数组时下标为变量导致错误 摘要:注意事项:定义数组时下标不能为未知的变量:第一遍写的代码将a[n][n]定义在对n取值之前,答案出现问题。因为在定义数组时下标不能为未知的变量,因为在本题中是在全局定义中定义了数组,而编译器在编译时会…… 题解列表 2021年03月01日 0 点赞 0 评论 446 浏览 评分:0.0
1046: [编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#defineLEN100//最大长度&nbsp;intmain(){intarr[LEN];intm,n;//输入…… 题解列表 2021年03月01日 0 点赞 0 评论 82 浏览 评分:0.0