题解列表

筛选

printf基础练习2 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int X; printf("请输入需要转化的数字"); scanf("%d",&X); printf("%o……
优质题解

薛定谔的时间旅行 (C语言代码)

摘要:解题思路:        该题说白了就是求明年的今天是星期几。        闰年,共366天        平年,共365天        比如17年8月16到18年8月16就过去了365天,到19……

矩形的福利 (C语言代码)

摘要:解题思路:            按照要求一行行输出注意事项:            注意格式要求参考代码:#include<stdio.h> int main() { int n,m; ……

Ti6奖金池 (C语言代码)

摘要:解题思路:    大数除法注意事项:    票价是10,所输入的数字还要乘以10再进行运算参考代码:#include<stdio.h> #include<string.h>    #define……

战士的神盾 (C语言代码)

摘要:解题思路:        按照要求依次输出注意事项:        注意格式参考代码:#include<stdio.h> int main() { int i,j,k,n,arr[100];……

用一维数组就行

摘要:解题思路:用一位数组就行注意事项:别输错个数参考代码:#include <stdio.h>int main(int argc, char *argv[]) { int a[9],i; for(i=0;……

数学的图表 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;//判断部分:int fx(int a){     int i,sum=0;   ……