1:简单输入输出
1—1:Hello World
这道超级简单的题目没有任何输入。
你只需要在一行中输出著名短句“Hello World!”就可以了。
输入样例:
无
输出样例:
Hello World!
var buf = ''; process.stdin.on('readable', function() { var chunk = process.stdin.read(); if (chunk) buf += chunk.toString(); }); process.stdin.on('end', function() { console.log("Hello World!"); });
1—2:A + B
输入两个整数,求这两个整数的和是多少。
输入格式
输入两个整数A,B,用空格隔开
输出格式
输出一个整数,表示这两个数的和
数据范围
0≤A,B≤108
样例输入:
3 4
样例输出:
7
let buf = ""; process.stdin.on("readable", function() { let chunk = process.stdin.read(); if (chunk) buf += chunk.toString(); }); process.stdin.on("end", function() { let [a, b] = buf.split(' ').map(x => { return parseInt(x); }); console.log(a + b); });
1—3:差
读取四个整数 A,B,C,D,并计算 (A×B−C×D) 的值。
输入格式
输入共四行,第一行包含整数 A,第二行包含整数 B,第三行包含整数 C,第四行包含整数 D。
输出格式
输出格式为 DIFERENCA = X,其中 X 为 (A×B−C×D) 的结果。
数据范围
−10000≤A,B,C,D≤10000
输入样例:
5 6 7 8
输出样例:
DIFERENCA = -26
let buf = ""; process.stdin.on("readable", function() { let chunk = process.stdin.read(); if(chunk) buf += chunk.toString() }) process.stdin.on("end", function() { let[a, b, c, d] = buf.split("\n").map(x => { return parseInt(x); }) console.log(`DIFERENCA = ${a * b - c * d}`); })
1—4:两点间的距离
给定两个点 P1 和 P2,其中 P1 的坐标为 (x1,y1),P2 的坐标为 (x2,y2),请你计算两点间的距离是多少。
distance=(x2−x1)2+(y2−y1)2−−−−−−−−−−−−−−−−−−√
输入格式
输入共两行,每行包含两个双精度浮点数 xi,yi,表示其中一个点的坐标。
输入数值均保留一位小数。
输出格式
输出你的结果,保留四位小数。
数据范围
−109≤xi,yi≤109
输入样例:
1.0 7.0 5.0 9.0
输出样例:
4.4721
let buf = ""; process.stdin.on("readable", function() { let chunk = process.stdin.read(); if(chunk) buf += chunk.toString(); }) process.stdin.on("end", function() { let lines = buf.split('\n'); let[x1, y1] = lines[0].split(' ').map(x => { return parseFloat(x); }) let[x2, y2] = lines[1].split(' ').map(x => { return parseFloat(x); }) let dx = x1 - x2; let dy = y1 - y2; console.log(Math.sqrt(dx * dx + dy * dy).toFixed(4)); })
1—5:计算指数
真的没骗你,这道才是简单题 —— 对任意给定的不超过 10 的正整数 n,要求你输出 2n 。不难吧?
输入格式:
输入在一行中给出一个不超过 10 的正整数 n。
输出格式:
在一行中按照格式 2^n = 计算结果 输出 2 n 的值。
输入样例:
5
输出样例:
2^5 = 32
var buf = ''; process.stdin.on('readable', function() { var chunk = process.stdin.read(); if (chunk) buf += chunk.toString(); }); process.stdin.on('end', function() { let n = parseInt(buf); console.log("2^" + n + " = " + 2 ** n); });
1—6:后天
如果今天是星期三,后天就是星期五;如果今天是星期六,后天就是星期一。我们用数字1到7对应星期一到星期日。给定某一天,请你输出那天的“后天”是星期几。
输入格式:
输入第一行给出一个正整数D(1 ≤ D ≤ 7),代表星期里的某一天。
输出格式:
在一行中输出D天的后天是星期几。
输入样例:
3
输出样例:
5
let buf = ''; process.stdin.on('readable', function() { let chunk = process.stdin.read(); if (chunk) buf += chunk.toString(); }); process.stdin.on('end', function() { let n = parseInt(buf); console.log((n + 1) % 7 + 1); });
2:判断语句
2—1:比较大小
本题要求将输入的任意3个整数从小到大输出。
输入格式:
输入在一行中给出3个整数,其间以空格分隔。
输出格式:
在一行中将3个整数从小到大输出,其间以“->”相连。
输入样例:
4 2 8
输出样例:
2->4->8
var buf = ''; process.stdin.on('readable', function() { var chunk = process.stdin.read(); if (chunk) buf += chunk.toString(); }); process.stdin.on('end', function() { let [a, b, c] = buf.split(' ').map(x => { return parseInt(x); }) let t; if(c < a) t = c, c = a, a = t; if(c < b) t = c, c = b, b = t; if(b < a) t = a, a = b, b = t; console.log(`${a}->${b}->${c}`); });