zoukankan      html  css  js  c++  java
  • 作业第六次

    程序员:孔婷婷

    package ktt;
    import com.rupeng.game.GameCore;
    public class kt implements Runnable {
            public static void main(String[] args)
            {
             
              GameCore.start(new kt());
              System.err.print("");
              System.err.print("");
             
            }
           
            public void run()
            {
             
               GameCore.setGameSize(1024, 768);// 设置游戏窗口大小
               GameCore.pause(3000);
               GameCore.loadBgView("张艺兴.jpg");
               GameCore.alert("Please enjoy the handsome man");
               GameCore.playSound("Paula DeAnda - Why Would I Ever.mp3", true);
               GameCore.pause(5000);
               boolean b = GameCore.confirm("你觉得怎么样?");
                  if (b)
                      GameCore.alert("帅!");
                  else
                      GameCore.alert("还是帅");

            }
            
        

  • 相关阅读:
    Codeforces 777B Game of Credit Cards
    Codeforces 777A Shell Game
    零基础学贪心算法
    1283 最小周长
    容斥原理
    Humble Numbers(丑数) 超详解!
    1284 2 3 5 7的倍数
    1305 Pairwise Sum and Divide
    1347 旋转字符串
    HDU 2549 壮志难酬
  • 原文地址:https://www.cnblogs.com/kongtingting/p/7711711.html
Copyright © 2011-2022 走看看