var Cen = 6;//定义菱形中部为第几行(起始值为0) //for循环输出菱形 document.write("<button onclick='xh()'>点我for循环</button>");//在HTML里输出一个按钮,点击后执行输出菱形的操作 document.write("<p id='xunhuan'></p>");//在HTML里输出一个段落p来容纳菱形 function xh() { var k…
用星星画菱形 public class Hello{ public static void main(String[] args) { char star = '\u2605'; System.out.println("Hello " + star + " World!"); // output a diamond shape with stars int temp1 = 0, temp2 = 0; for(int i=1; i<=4; ++i){ temp1…
package nothh; public class mmm { public static void main(String[] args) { //for循环内的 for按顺序运算,先打印1/4菱形,再打印上1/2菱形,左边空白处用空格代替,右边空白处无输入即可. for(int i = 0; i <= 4; i++) { for(int a = 4; a >= i; a--) { System.out.print(" "); } for(int b = 0;b &l…
public class For{ public static void main(String[] args){ //首先.把菱形看成上下两部分,上五下四,所以,第一个for循环有5次,第二个for循环有4次 for( int i = 1; i <= 5; i++){ //将空格和*分开看,看" "的变化i=1时,它是4,2的时候是3,找规律 for( int j = 1; j <= 5-i ; j++){ System.out.print(" ");…