SDUT lab 1.3

简介: SDUT lab 1.3

7-3 Java-the floor space of the room in square feet

分数 10

全屏浏览

切换布局

作者 马新娟

单位 山东理工大学

Write a Java program that declares two variables of integer data type to represent the length and width of a room in feet. Assign appropriate values(6 and 7) to the variables and compute and display the floor space of the room in square feet. Do not display only a value as output but include explanatory text. Output should be displayed using console window.

输入格式:

输出格式:

The squre feet of the room is: 42

输入样例:

输出样例:

1The squre feet of the room  is: 42

代码长度限制

16 KB

时间限制

400 ms

内存限制

64 MB

栈限制

8192 KB

public class Main
{
public static void main(String [] args)
{
    int a=6;
    int b=7;
    int c=a*b;
    
    System.out.println("The squre feet of the room  is: "+c);
    
    
    
}
}


目录
相关文章
|
Rust 程序员 数据安全/隐私保护
GitHub 上标星 13.4K 的远程软件!太强大了
GitHub 上标星 13.4K 的远程软件!太强大了
3164 0
GitHub 上标星 13.4K 的远程软件!太强大了
|
8月前
|
SQL 安全 测试技术
Sqli-lab教程-史上最全详解(1-22通关)_sqlilabs
Sqli-lab教程-史上最全详解(1-22通关)_sqlilabs
|
8月前
|
存储 Java 数据安全/隐私保护
sdut lava lab7.5
sdut lava lab7.5
54 0
|
8月前
|
Java
sdut lab1.4
sdut lab1.4
44 0
|
8月前
SDUT lab5-2
SDUT lab5-2
40 0
|
8月前
|
安全 测试技术 数据库
Sqli-lab教程-史上最全详解(1-22通关)_sqlilabs(1)
Sqli-lab教程-史上最全详解(1-22通关)_sqlilabs(1)
|
8月前
|
Linux 项目管理 开发工具
Git从入门到起飞(详细)
Git从入门到起飞(详细)
72 0
|
8月前
|
网络协议 开发工具 git
【斯坦福计网CS144】Lab4终结笔记
【斯坦福计网CS144】Lab4终结笔记
135 0
|
8月前
|
网络协议 开发工具 网络架构
【斯坦福计网CS144】Lab2终结笔记
【斯坦福计网CS144】Lab2终结笔记
92 0
|
8月前
|
网络协议 Linux 网络性能优化
【斯坦福计网CS144】Lab5终结笔记
【斯坦福计网CS144】Lab5终结笔记
76 0