摘要: STACK SEGMENT STACK DW 512 DUP(?) STACK ENDS DATA SEGMENT STRING DB 'Hello',0DH,0AH,'$' DATA ENDS CODE SEGMENT 'CODE' ASSUME CS:CODE,DS:DATA,SS:STACK 阅读全文
posted @ 2017-10-15 23:27 啊,哈哈 阅读(212) 评论(0) 推荐(0)
摘要: STACK SEGMENT STACK DW 512 DUP(?) STACK ENDS DATA SEGMENT DATA ENDS CODE SEGMENT 'CODE' ASSUME CS:CODE,DS:DATA START: MOV AX,DATA MOV DS,AX MOV AH,1 I 阅读全文
posted @ 2017-10-15 23:25 啊,哈哈 阅读(272) 评论(0) 推荐(0)
摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in =new Scanner(System.in); int x=0; int y=0; int numbe 阅读全文
posted @ 2017-10-15 23:08 啊,哈哈 阅读(317) 评论(0) 推荐(0)
摘要: using namespace std; #include<iostream> #include<map> #include<vector> #include<fstream> int abs(int a) { return a > 0 ? a : -a; } map<int, int> a; vo 阅读全文
posted @ 2017-10-15 22:54 啊,哈哈 阅读(275) 评论(0) 推荐(0)
摘要: import java.util.Scanner; public class report { public static void main(String[] args) {String[] s={"Faint signals, barely perceptible", "Very weak si 阅读全文
posted @ 2017-10-15 22:45 啊,哈哈 阅读(256) 评论(0) 推荐(0)
摘要: import java.util.Scanner; public class Time { public static void main(String[] args) { Scanner in = new Scanner(System.in); int time = in.nextInt(); i 阅读全文
posted @ 2017-10-15 22:44 啊,哈哈 阅读(185) 评论(0) 推荐(0)
摘要: import java.util.Scanner; public class temperature { public static void main(String[] args) { Scanner in =new Scanner(System.in); int a=in.nextInt(); 阅读全文
posted @ 2017-10-15 22:43 啊,哈哈 阅读(200) 评论(0) 推荐(0)