3015: 幂的末尾(C语言简单解法) 摘要: #include int main() { int a, b; scanf("%d %d", &a, &b); int result = 1; for (int i =…… 题解列表 2023年07月14日 0 点赞 0 评论 354 浏览 评分:9.9
优质题解 3014: 计算星期几(C语言详细解答) 摘要: #include int main() { char* weekdays[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thur…… 题解列表 2023年07月14日 1 点赞 2 评论 718 浏览 评分:9.9
1015: [编程入门]求和训练 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int a, bv=0,b=0, c=0; float d=0; scanf_s("%d%d%d", &a, …… 题解列表 2023年07月14日 0 点赞 0 评论 160 浏览 评分:0.0
检查一个数是否为质数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; if(n=…… 题解列表 2023年07月14日 0 点赞 0 评论 129 浏览 评分:0.0
数字统计计计计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int l,r,sum=0; cin>>l>>…… 题解列表 2023年07月14日 0 点赞 0 评论 193 浏览 评分:0.0
编写题解 2749: Hello, World! 摘要:解题思路:1、输出注意事项:1、输出时注意符号不要漏掉参考代码:#include<iostream> using namespace std; int main (){cout<<"Hello, …… 题解列表 2023年07月14日 0 点赞 0 评论 373 浏览 评分:9.9
数一的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0; cin>>n; …… 题解列表 2023年07月14日 0 点赞 0 评论 152 浏览 评分:3.0
题解 2833:只因币 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum=0,a=0 ; int n ; cin>>n…… 题解列表 2023年07月14日 0 点赞 0 评论 291 浏览 评分:9.9
编写题解 1806: [编程基础]输入输出练习之第二个数字 摘要:解题思路: 1、创建三个整形变量 2、输入他们 3、输出第二个整形变量参考代码:#include<iostream> using namespace std; int main(…… 题解列表 2023年07月14日 0 点赞 0 评论 301 浏览 评分:6.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int n, i, k = 0, …… 题解列表 2023年07月14日 0 点赞 0 评论 327 浏览 评分:9.9