package zuoye; import java.util.Scanner; public class Test7 { public static void main(String[] args) { //1.小明左、右手中分别拿两张纸牌(比如:黑桃10和红桃8,数字10和8可通过键盘录入), // 要求编写代码交换小明手中的牌 // 2.程序运行的结果如下: // 请输入小明左手中的纸牌:10 // 请输入小明右手中的纸牌:8 // 互换前小明手中的纸牌: // 左手中的纸牌:10 // 右手中的纸牌:8 // 互换后小明手中的纸牌: // 左手中的纸牌:8 // 右手中的纸牌:10 // 分析: // 1.创建键盘录入对象 // 2.定义int类型的变量left和right,并通过nextInt()方法给left和right赋值 // 3.定义临时变量temp实现left和right变量值得交换 // 4.按格式打印交换后的结果 Scanner sc = new Scanner(System.in); System.out.println("请输入左手的卡牌"); int temp = sc.nextInt(); System.out.println("请输入右手的卡牌"); int right = sc.nextInt(); int flag = left; left = right; right = temp; System.out.println(left); System.out.println(right); } }
小明左、右手中分别拿两张纸牌(比如:黑桃10和红桃8,数字10和8可通过键盘录入),要求编写代码交换小明手中的牌
最新推荐文章于 2024-06-01 11:37:29 发布