题解列表
数据结构-简单选择排序(这道题很简单的了)
摘要:解题思路:注意事项: 输出格式的要求,注意一下就行。参考代码:#include<stdio.h>int main(){ int n,k,temp,i,j; int a[1000];//防止数组越界 ,……
一行代码解决,有帮助给个5星
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ for(int i=1;i<=9;i++){ ……
不需要数组,简单运算
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a=0 , n=0 , m=0; flo……
字符串解题,代码简短简单
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str; getline(cin,……
1009: [编程入门]数字的处理与判断
摘要:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[5]; scanf("%s",str); int len……
1136: C语言训练-求具有abcd=(ab+cd)2性质的四位数
摘要:#include<bits/stdc++.h>
using namespace std;
int main(){
string s,s1,s2;
for(int i=10……
使用函数的定义和调用
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int x=0,y;void cst();/* run this program using……
话费计算Java超简单
摘要:解题思路:直接多少分中乘一下0.4就好了,他自己会加小数的注意事项:不要想麻烦了参考代码:package com.itheima;import java.util.Scanner;public cla……