package suiji;
import java.io.IOException;
public class suiji { public static void main(String[] args) throws IOException { int x,y,z; for(int i=0;i<30;i++) { x=0+(int)(Math.random()*100); y=0+(int)(Math.random()*100); System.out.print(""+x); z=0+(int)(Math.random()*4); if(z==0)System.out.print(" + "); if(z==1)System.out.print(" - "); if(z==2)System.out.print(" * "); if(z==3)System.out.print(" / "); System.out.println(""+y+" = ?"); } } }
一个寒假没有编程,对eclipse的操作已不熟练,VS卸载了还没有装。
时间: 2024-10-29 19:11:56