题解列表

筛选

二级C语言-寻找矩阵最值-Java

摘要:解题思路: 因为是菜鸟,所以就老老实实的:创建数组---输入值---在输入值的同时进行比较,储存最大值及其行列坐标。注意事项:一开始看漏了绝对值,所以提交成功时的代码不具备应对负值的能力,看来还是不够……

一看就会 新思路

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>using namespace std;int main(){ string a; cin>>a;……

java注意事项

摘要:注意事项:注意printf的输出形式参考代码:import java.util.Scanner;public class Main {    public static void main(Strin……

编写题解 1955: 贷款计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int cal(int a ,float b ,int c ,int d){    int pb = 0;    while(d--) ……

简单易懂......

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){    string a,b;    c……