2759: 打印字符 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年09月24日 0 点赞 0 评论 239 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-刷题统计 摘要:解题思路:n的范围达到了十的十八次方,如果只用循环的画时间复杂度会非常的大,而且只能拿到80分。注意事项:数据的类型要用长整型参考代码:#include<iostream>using namespac…… 题解列表 2023年09月24日 0 点赞 0 评论 141 浏览 评分:0.0
1029: [编程入门]自定义函数处理素数题解 摘要:若是个素数,那么就不能被2~n-1的数整除。#include <bits/stdc++.h>bool prime_Index(int n){ for(int i = 2; i < n; i++) { …… 题解列表 2023年09月24日 0 点赞 0 评论 181 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,sum=0,a; while (scanf ("%d",&n)&&n){ …… 题解列表 2023年09月24日 0 点赞 0 评论 170 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,sum=0,a,b=0; scanf ("%d",&n); for (int …… 题解列表 2023年09月24日 0 点赞 0 评论 153 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ double data,y1,y2; int a,b,c; …… 题解列表 2023年09月24日 0 点赞 0 评论 158 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main (){ char a[80]; gets(a); for (…… 题解列表 2023年09月24日 0 点赞 0 评论 154 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int f(int n){ double a,b; a=n/100; b=n%10…… 题解列表 2023年09月24日 0 点赞 0 评论 140 浏览 评分:0.0
1016: [编程入门]水仙花数判断 摘要:解题思路:分别求出三位数的水仙花数的百位数,十分位数,个位数后。分别对其进行三次方处理判断即可注意事项:参考代码:#include<stdio.h>#include<math.h>int main()…… 题解列表 2023年09月24日 0 点赞 0 评论 185 浏览 评分:0.0