用jave语言打印平行四边形 输入图形的行数 列数并输入打印的字符
#include
#define true 1
void print(char cType, int iRow, int iColumn, char cMark)
{
int i,j;
if(cType == 'A')
{
for(i = 0; i < iRow; i++)
{
for(j = 0; j < iColumn; j++)
{
printf("%c ", cMark);
}
printf("
");
}
}
else if(cType == 'B')
{
for(i = 0; i < iRow; i++)
{
for(j = iRow; j > i; j--)
{
printf(" ");
}
for(j = 0; j < iColumn; j++)
{
printf("%c ", cMark);
}
printf("
");
}
}
else
{
printf("Error
");
}
}
int main()
{
int iRow;
int iColumn;
char cType;
char cMark;
while(true)
{
printf("Please select the graph you want to print
A. Rectangle B. Parallelogram Q. Quit
");
scanf("%c", &cType);
getchar();
if(cType != 'A' && cType != 'B' && cType != 'Q')
{
printf("
Input illegal
");
continue;
}
if(cType == 'Q')
{
return 0;
}
printf("Please input the number of rows: ");
scanf("%d", &iRow);
printf("Please input the number of columns: ");
scanf("%d", &iColumn);
printf("Please input the charactor you want to print : ");
getchar();
scanf("%c", &cMark);
getchar();
print(cType, iRow, iColumn, cMark);
}
return 0;
}
import java.util.Scanner;
public class dy {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner it = new Scanner(System.in);
System.out.println("请输入一个数字:");
int s = it.nextInt();
int i,j,k=0;
for(i=0;i<s;i++)
{
for(j=7;j>i;j--)
System.out.printf("");
for(j=1;j<2*k;j*=2)
{
System.out.printf("* ");
}
k=j;
for(;j>=1;j/=2)
{
System.out.printf("* ",j);
}
System.out.printf("
");
}
}
}
import java.util.*;
public class Kyo
{
public static void main(String[] args)
{
System.out.println("输入图形的行数:");
Scanner scan = new Scanner (System.in);
int n = scan.nextInt();
scan.close();
for(int i = 0; i < n; i++)
{
for(int j = 0; j < i; j++)
{
System.out.print(" ");
}
for(int j = 0; j < n; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
用jave语言打印平行四边形 输入图形的行数 列数并输入打印的字符
import java.util.*;public class Kyo{ public static void main(String[] args) { System.out.println("输入图形的行数:"); Scanner scan = new Scanner (System.in); int n = scan.nextInt(); scan.close(); for(int i = 0; i < n; i++) { for(i...
Java如何用数组打印出一个平行四边形
import java.util.Scanner;public class Main2 { public static void main(String args[]){ Scanner scanner=new Scanner(System.in);System.out.println("请输入底长和高");int i=scanner.nextInt();int j=scanner.nextInt();System.out.println("空心平行四边形为:");for(int k=j;k>0;k...
如何用java语言编写从键盘上输入平行四边形的底和高,求面积并输出_百度...
import java.io.*;public class Test{ public static void main(String[] args) throws Exception{ BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));System.out.println ("请输入平行四边形的长:");String width = buf.readLine();System.out.println ("请输入平行四边...
用c语言打印出以下图形 平行四边形
include <stdio.h>void show(int n) {int i,j;for(i = 0; i < n; ++i) {for(j = 0; j < n - i; ++j)printf(" ");for(j = 0; j < n; ++j)printf("*");printf("\\n");}}int main() {show(7);return 0;} ...
JAVA怎么实现循环输入
import java.util.Scanner;import java.util.List;import java.util.ArrayList;public class InputTest { public static void main(String[] args) {List<String> input = new ArrayList<>();Scanner sc = new Scanner(System.in);for(;;){System.out.print("请输入下一个数据(直接回车结束输...
JAVA怎么实现循环输入?
1、Java语言从键盘输入一个整型:import java.util.Scanner;public class Test{ public static void main(String args[]){ Scanner in = new Scanner(System.in);System.out.println("请输入一个成绩为:");int n;n = in.nextInt();System.out.println("n=" + n);} } 2、对学生成绩的...
如果两个*叠成的金字塔,合成一个平行四边形,用java怎样做,可以将两个...
该行的字符的长度 showLength = 2 * (halfLength - spaceLength) + 1;\/\/ 打印字符 for (int index3 = 1; index3 <= showLength; index3++) { System.out.print("*");} \/\/ 换行 System.out.println();} 这样就可以了,也可以把上面的内容写成一个方法, 将length作为这个方法的参数....
Java编程求矩形的面积
javaimport java.util.Scanner; public class GeometryCalculator { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("请输入几何图形的类型(圆形、矩形、三角形、平行四边形):"); String shapeType = scanner.nextLine(); ...
编写java程序,输入一个长方体的长、宽、高,求长方体的表面积和体积,并...
1、长方体表面积公式 :S = 2(ab + bc + ac);2、长方体体积公式 :V = abc = Sh;(这里的S表示底面积)。实现如下:public class Cuboid {\/\/定义长方体的长、宽、高private double length, width, height;public Cuboid(double length, double width, double height) {super();thi...
Python有多少版本(2023年最新整理)
考查考生利用turtle库来绘制一个图形,比如平行四边形呀,画一个有内切圆正方形呀, 这一部分题会让你填写代码,大体的代码已经有了,你需要把考题中的横线替换成你的代码,并能在考试的电脑上运行出和考题一样的结果就能保证结果正确无误。 另一部分题是关于统计字数的,统计票数的,多数是对文本文件进行的操作,输出...