1773: [编程入门]C语言循环移位[Java代码] 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2021年08月10日 0 点赞 0 评论 663 浏览 评分:0.0
完数的判断--题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int a; int b = 0; int i,j,k; scanf("%d", &a…… 题解列表 2021年08月10日 0 点赞 0 评论 325 浏览 评分:0.0
[编程入门]亲密数-题解(C语言代码) 摘要:#include int main() { int a,b,i,j,sa,sb; for(a=1,b=1;a…… 题解列表 2021年08月10日 0 点赞 0 评论 352 浏览 评分:0.0
羅者——Java语言 1776: [编程入门]原码求补码 摘要:[原题链接](http://https://www.dotcpp.com/oj/problem1776.html "原题链接") 我用的是String转String数组再转int数组并输出 …… 题解列表 2021年08月11日 0 点赞 0 评论 443 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ printf("**************************\n"); printf("Hello W…… 题解列表 2021年08月11日 0 点赞 0 评论 229 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); printf("0%o %d 0x%x\n",a,a,a); r…… 题解列表 2021年08月11日 0 点赞 0 评论 245 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float r,s,p=3.1415926; scanf("%f",&r); s=p*r*r; printf(…… 题解列表 2021年08月11日 0 点赞 0 评论 257 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a*a+b*b); re…… 题解列表 2021年08月11日 0 点赞 0 评论 190 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,C,S; scanf("%d %d",&a,&b); printf("C:%d\nS:%d",…… 题解列表 2021年08月11日 0 点赞 0 评论 323 浏览 评分:0.0
简单代码易理解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float a,b; scanf("%f",&a); b=50+0.4*a; printf("%.1f",b)…… 题解列表 2021年08月11日 0 点赞 0 评论 259 浏览 评分:0.0