题解列表

筛选

敲简单C语言代码!!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int sc[10000][5];    int i,t;    int n,e,f;    scanf ……

日历问题 題解

摘要:#####常規做法 思路: 從年月日順序計算,滿一年判斷平閏年,減去一年的天數,以此類推 ```java public static void main(String[] args) { ……

利润计算——简单思路

摘要:解题思路:if——else-if——else 语句 ;比较直接。注意事项:注意数字的大小参考代码:#include<stdio.h>int main(){    int x,y;    scanf("……

纯纯无脑暴力求解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j=1,k=3,l=7,o=9; for (i = 1; i <= 4; i++) { print……

利用sort巧妙解。

摘要:解题思路:    利用sort解题注意事项:    注意sort的用法参考代码:#include<bits/stdc++.h> using namespace std; typedef struc……