南京邮电大学java程序设计作业在线编程第三次作业
王利国的"Java语言程序设计第3次作业(2018)"详细
- 作业结果详细
总分:100
选择题得分:60
编程题得分:40
import java.util.Scanner; /**
* @Author liguo
* @Description
* @Data 2018-04-03
*/
public class Main { public static void main(String[] args) {
int year;
int month;
int[] a = {1, 3, 5, 7, 8, 10, 12};
int[] b = {4, 6, 9, 11};
Scanner in = new Scanner( System.in );
year = in.nextInt();
month = in.nextInt();
//判断二月,考虑闰年情况
if (month == 2) {
if (year % 100 != 0 && year % 4 == 0 || year % 400 == 0)
System.out.println( year + "-" + month + "-29" );
else
System.out.println( year + "-" + month + "-28" );
}
//判断三十一天的情况
for (int element : a) {
if (month == element) {
System.out.println( year + "-" + month + "-31" );
}
}
//判断三十天的情况
for (int element : b) {
if (month == element) {
System.out.println( year + "-" + month + "-30" );
}
}
}
}
从键盘上读入一个百分制成绩x(0 < = x < = 100),将其转换为等级制成绩输出。本题在C语言和Java语言中要求使用switch分支实现。等级制成绩(百分制成绩)
import java.util.Scanner; /**
* @Author liguo
* @Description 从键盘上读入一个百分制成绩x(0 < = x < = 100),
* 将其转换为等级制成绩输出。本题在C语言和Java语言中要求使用switch分支实现。
* 等级制成绩(百分制成绩)
* A(90<=x<=100)
* B(80<=x<90)
* C(70<=x<80)
* D(60<=x<70)
* E(0<=x<60)
* @Data 2018-04-03
*/
public class Main { static void judge(int mark) {
char degree = 'A';
int temp = mark / 10;
if (temp >= 0 && temp < 6)
degree = 'E';
if (temp == 6)
degree = 'D';
if (temp == 7)
degree = 'C';
if (temp == 8)
degree = 'B';
if (temp == 9 || temp == 10)
degree = 'A';
System.out.println( mark + "--" + degree );
} public static void main(String[] args) {
int temp;
Scanner in = new Scanner( System.in );
int x = in.nextInt();
temp = x / 10;
if (temp >= 0 && temp < 6)
temp = 5;
switch (temp) {
case 5:
judge( x );
break;
case 6:
judge( x );
break;
case 7:
judge( x );
break;
case 9:
judge( x );
break;
case 10:
judge( x );
break;
}
}
}
用if语句求解分段函数 得分:10 / 10
import java.util.Scanner; /**
* @Author liguo
* @Description分段函数求解:输入 x ,计算并输出 y 的值:
* y=x+100 ( 当 x < 20)
* y= x ( 当 2 0 ≤ x ≤ 100)
* y=x-100 ( 当 x > 100)
* @Data 2018-04-03
*/
public class Main { public static void main(String[] args) {
double x, y;
Scanner in = new Scanner( System.in );
x = in.nextDouble();
if (x < 20)
y = x + 100;
else if (x >= 20 && x <= 100)
y = x;
else
y = x - 100;
System.out.printf( "x=%.2f,y=%.2f", x, y ); }
}
2-2 混合类型数据格式化输入 得分:10 / 10
import java.util.Scanner; /**
* @Author liguo
* @Description 输入在一行中顺序给出浮点数1、整数、字符、浮点数2,其间以1个空格分隔。
* 输入描述
* 输入在一行中顺序给出浮点数1、整数、字符、浮点数2,其间以1个空格分隔。
* 输出描述
* 在一行中按照字符、整数、浮点数1、浮点数2的顺序输出,其中浮点数保留小数点后2位。
* @Data 2018-04-03
*/
public class Main { public static void main(String[] args) {
Scanner in = new Scanner( System.in );
double d1 = in.nextDouble();
int i = in.nextInt();
String s = in.next();
char c = s.charAt( 0 );
double d2 = in.nextDouble();
System.out.printf( "%c %d %.2f %.2f", c, i, d1, d2 );
}
}
从键盘输入任意一个三位数的整数,请编写程序计算这个整数的数位和。
输入描述
输入一个三位数的整数
输出描述
import java.util.Scanner;
/**
* @Author liguo
* @Description 从键盘输入任意一个三位数的整数,请编写程序计算这个整数的数位和。
输入描述
输入一个三位数的整数
输出描述
* @Data 2018-04-03
*/
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner( System.in );
int temp = in.nextInt();
temp = Math.abs(temp);
int a = temp/100;
int b = temp /10%10;
int c = temp %10;
int sum = a+b+c;
System.out.println(sum);
}
}
南京邮电大学java程序设计作业在线编程第三次作业的更多相关文章
- 南京邮电大学java程序设计作业在线编程第四次作业
王利国的的 "Java语言程序设计第4次作业(2018)" 详细 主页 我的作业列表 作业结果详细 总分:100 选择题得分:40 1.下列方法定义中,正确的是() A.doub ...
- 南京邮电大学java程序设计作业在线编程第二次作业
王利国的"Java语言程序设计第2次作业(2018)"详细 作业结果详细 总分:100 选择题得分:60 1. 表达式9==8&&3<7的运算结果是( ) ...
- 南京邮电大学java程序设计作业在线编程第一次作业
王利国的"Java语言程序设计第1次作业(2018)"详细 作业结果详细 总分:100 选择题得分:40 1. Java语言中,基本数据类型一共有( )种. A.16 B.2 C ...
- 南京邮电大学java程序设计作业在线编程第五次作业
王利国的"Java语言程序设计第5次作业(2018)"详细 主页 我的作业列表 作业结果详细 总分:100 选择题得分:50 1. 以下哪一个工具是Java的编译器?( ) A. ...
- 南京邮电大学java程序设计作业在线编程第六次作业
王利国的的 "Java语言程序设计第6次作业(2018)" 详细 主页 我的作业列表 作业结果详细 总分:100 选择题得分:60 1. Java中所有类的父类是(). A.Fa ...
- 南京邮电大学java程序设计作业在线编程第八次作业
程序设计类课程作业平台 王利国 主页 教学资源 我的作业列表 程序设计课 账户 王利国的"Java语言程序设计第8次作业(2018)"详细 主页 我的作业列表 作业结果详细 总分: ...
- 南京邮电大学java程序设计作业在线编程第七次作业
王利国的"Java语言程序设计第7次作业(2018)"详细 主页 我的作业列表 作业结果详细 总分:100 选择题得分:60 1. 下列叙述中,错误的是( ). A.Java中, ...
- 南京邮电大学java第二次实验报告
实 验 报 告 ( 2017 / 2018学年 第2学期) 课程名称 JAVA语言程序设计 实验名称 Java集成开发环境的安装与使用. Java变量.表达式与控制结构 实验时间 2018 年 4 月 ...
- 南京邮电大学java第一次实验报告
实 验 报 告 ( 2017 / 2018学年 第2学期) 课程名称 JAVA语言程序设计 实验名称 Java集成开发环境的安装与使用. Java变量.表达式与控制结构 实验时间 2018 年 4 月 ...
随机推荐
- 笔记:Maven 下载和安装
Windows 安装 下载 Apache Maven,下载地址为 http://maven.apache.org/ 解压缩下载的 ZIP 文件,复制到安装目录 增加环境变量 M2_HOME ,值为 A ...
- Vue解析三之过滤器
export function formatDate(date, fmt) { if (/(y+)/.test(fmt)) { fmt = fmt.replace(RegExp.$1, (date.g ...
- poj-1045(数学不好怪我咯)
Description Consider the AC circuit below. We will assume that the circuit is in steady-state. ...
- 大数据 --> Spark与Hadoop对比
Spark与Hadoop对比 什么是Spark Spark是UC Berkeley AMP lab所开源的类Hadoop MapReduce的通用的并行计算框架,Spark基于map reduce算法 ...
- spring-boot-devtools
Create a new Maven Project and we have two class under the package com.example.demo like below scr ...
- [转] 关于VS中区分debug与release,32位与64位编译的宏定义
在vs编程中,常常涉及到32位和64位程序的编译,怎么判断当前编译是32位编译还是64位编译?如何判断是debug下编译还是release下编译?因为之前用到,这里记录一下,省的忘了又要疯狂的goog ...
- Leetcode 28——Implement strStr()
Implement strStr(). Return the index of the first occurrence of needle in haystack, or -1 if needle ...
- android 与 服务器通信
android 与 服务器通信 服务端代码: (1)control 层 /** * 用户登录 * @return */ @RequestMapping(value = "/login&quo ...
- Beta Scrum Day 1
听说
- scrapy crawl xmlfeed spider
from scrapy.spiders import XMLFeedSpider from myxml.items import MyxmlItem class XmlspiderSpider(XML ...