Java 如何通过选择三角形类型,输出图形?package Test1import java.util.Scannerpublic class B {static void dengyao(int i) {for (int j = 0j <ij++) {for2023-03-21Python190
工资管理系统C语言代码还没有完善好,实在没时间了,最近太忙。先给你吧#include <stdio.h>#include <stdlib.h>#include <string.h>int2023-03-21Python190
用Java编写一个点菜系统import java.util.*public class s { static int x,xx,y,yystatic double sum=0 public static void main(String[] args){St2023-03-20Python160
python中定义一个函数,题目如下class rectangle: def __init__(self,*args): if len(args)==2: self.width,self.height=args[0],args[1] 2023-03-20Python180
C语言程序设计:学生宿舍管理系统设计给你个学生成绩管理的,你改一下变量名就好了#include #include#define LEN sizeof(struct student) #define N 35 #include #define NULL 0 int n=02023-03-20Python210
如何使用python编程写一个加法计算器1、打开idle。点击file,然后点击new file.这是创建一个新的文件。新建一个文件之后,我们输入第一行代码,使用print函数,在屏幕上打印一句话,其中字符串要使用双引号,输入法要使用英文输入法,如果符号使用中文输入法输入,就会出2023-03-19Python200
求C语言 工资管理系统 原代码#include <iostream>#include <string>#define MaxHEAP 100using namespace stdclass Elem{private:int2023-03-19Python170
用C语言编写一个通讯录管理系统C语言编写一个通讯录管理系统的源代码如下:#include<stdio.h>#include<string.h>#include<stdlib.h>*定义保存2023-03-19Python230
Java编写图书管理系统,使用XML存储import java.io.Fileimport java.io.FileOutputStreamimport java.util.ArrayListimport java.util.Listimport java.util.Scanne2023-03-19Python180
java如何从命令行输入和输出数据?Scannerinput=newScanner(System.in) Scanner的构造函数要求传一个输入流对象,而System.in就是从控制台接收的输入流,传过来即可 要接收输入的话,用Scanner有一系列的next方法,比如int2023-03-19Python220
C语言:链栈的基本操作(代码如下:帮我看看错哪了)典型的指针形参问题。源代码见网页端#include <stdio.h>#include <stdlib.h>typedef struct StackNode{int datastruc2023-03-18Python170
用C语言写火车订票系统#include <conio.h>#include <stdio.h>#include <stdlib.h>#include <string.h&2023-03-18Python210
C语言,输入一批学生的成绩,统计其中80分以上学生所占的百分比C语言,输入一批学生的成绩,统计其中80分以上学生所占的百分比#include<sttdio.h>main{ }int i,j ,sum=0,score[n]sum表示分数大于80的学生数,n表示学生总数2023-03-18Python230
c语言程序设计学什么什么是C语言?C语言的简介。C语言是一种计算机程序设计语言,它既具有高级语言的特点,又具有汇编语言的特点。它可以作为工作系统设计语言,编写系统应用程序,也可以作为应用程序设计语言,编写不依赖计算机硬件的应用程序。因此,它的应用范围广泛,不仅2023-03-18Python120
如何在PYTHON 中写一个函数交换两个变量的值python交换两个变量的值很简单,a,b = b,a 就可以,写成函数,代码如下:def jh(a,b): return b,ax = 1y = 2x,y = jh(x,y)print(x,y)执行结果如下:def test(2023-03-18Python140
c语言编写一个通讯录系统 用简单一点的c#define N 100#define SIZE 30#include <stdio.h>#include <string.h>#include <conio.h>s2023-03-18Python140
用C语言编写一个线性插值程序#include <stdio.h>double Lerp(double x0,double y0,double x1,double y1,double x){ double dy = y1 - y0 i2023-03-17Python200
c语言求一组数的最大值#include <stdio.h>int main(){ int i,n,x,maxprintf("有几个数:")scanf("%d",&n)printf2023-03-17Python190
java 写出两点之间的距离package comimport java.awt.Pointpublic class JuLi {public static void main(String[] args) {Point p1 = new Point(5, 5)2023-03-17Python170