题解列表
c代码记录之素数回文数的个数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int n,i,j,k,t,sum=0;
scanf("%d",&n);
……
c代码记录之矩阵相乘
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<stdlib.h>
int main(){
int **a,**b,hang_a,lie_a,hang……
C语言 if语句的使用
摘要:解题思路:利用根号下b^2-4ac以及x=-b+-根号下b^2-4ac/2a解决问题;不要忘记根的判别式小于0在实数范围无解,但在复数范围存在解;注意事项: 2*a一定要记得加括号,参考代……
c代码记录之只出现一次的首个字符
摘要: #include
#include
int main(){
char str[100000];
gets(str);
……
c++指针法(指针练习)
摘要:解题思路:初试指针注意事项:参考代码:#include <iostream>using namespace std;int main(){ int arr[9]; int i; for(i=0;i<9……
题解 2834: 与指定数字相同的数的个数
摘要: #include
using namespace std;
int main(){
int a[100],c,sum=0,b;
cin>>c;
……
蓝桥杯基础练习VIP-FJ的字符串
摘要:解题思路:注意事项:参考代码:// 包含标准输入输出库的头文件
#include <stdio.h>
// 包含字符串操作库的头文件
#include <string.h>
// 主函……