矩形面积交 (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanne…… 题解列表 2022年07月28日 0 点赞 0 评论 408 浏览 评分:0.0
编写题解 1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf("**************************\n"); printf…… 题解列表 2022年07月28日 0 点赞 0 评论 467 浏览 评分:0.0
编写题解 2182: [编程入门]打印图案 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { printf(" *\n"); printf(" * *\n"); printf("*…… 题解列表 2022年07月28日 0 点赞 0 评论 445 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char c1 = 'C', c2 = 'h', c3 = &#…… 题解列表 2022年07月28日 0 点赞 0 评论 373 浏览 评分:0.0
编写题解 1005: [编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double F = 0; scanf("%lf", &F); printf("c…… 题解列表 2022年07月28日 0 点赞 0 评论 388 浏览 评分:0.0
编写题解 1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 449 浏览 评分:0.0
编写题解 1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double r = 0; scanf("%lf", &r); printf("%…… 题解列表 2022年07月28日 0 点赞 0 评论 317 浏览 评分:0.0
编写题解 1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 0, b = 0; scanf("%d %d", &a, &b); …… 题解列表 2022年07月28日 0 点赞 0 评论 294 浏览 评分:0.0
用字符串流stringstream方法解题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; string a; getch…… 题解列表 2022年07月28日 0 点赞 0 评论 423 浏览 评分:0.0
1851: 求所给范围内水仙花数并排列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int i; int m,n; int a[100][100]={0}; int t=0,q=0; in…… 题解列表 2022年07月28日 0 点赞 0 评论 455 浏览 评分:0.0