#c++字符串对比 transform(s.begin(),s.end(),s.begin(),::toupper); //全部转成大写 摘要:```cpp #include using namespace std; int main() { string s,ss; cin>>s>>ss; if(s.size()!=ss…… 题解列表 2022年07月28日 0 点赞 0 评论 552 浏览 评分:0.0
C# 1073: 弟弟的作业 atoi(s.c_str())函数 摘要:```cpp #include using namespace std; int main() { //列如1+2=3; int a,c,ans=0;//…… 题解列表 2022年07月28日 0 点赞 0 评论 366 浏览 评分:0.0
C# 高精度加法 摘要:解题思路: 逆序储存相加(是为了从个位开始相加,方便计算)(想一下 笔算 是不是从个位开始相加的),再逆序输出,long long存不下吗,用数组来做 注意事项: 逆序储存相加 ,逆序输出…… 题解列表 2022年07月28日 0 点赞 0 评论 395 浏览 评分:0.0
矩形面积交 (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanne…… 题解列表 2022年07月28日 0 点赞 0 评论 355 浏览 评分:0.0
编写题解 1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf("**************************\n"); printf…… 题解列表 2022年07月28日 0 点赞 0 评论 404 浏览 评分:0.0
编写题解 2182: [编程入门]打印图案 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf(" *\n"); printf(" * *\n"); printf("*…… 题解列表 2022年07月28日 0 点赞 0 评论 386 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char c1 = 'C', c2 = 'h', c3 = &#…… 题解列表 2022年07月28日 0 点赞 0 评论 337 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double F = 0; scanf("%lf", &F); printf("c…… 题解列表 2022年07月28日 0 点赞 0 评论 340 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 398 浏览 评分:0.0
编写题解 1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double r = 0; scanf("%lf", &r); printf("%…… 题解列表 2022年07月28日 0 点赞 0 评论 249 浏览 评分:0.0