importjava.util.*;
publicclasslianxi72_5{
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinport=newScanner(System.in);
System.out.println("请输入成绩");
intmath=inport.nextInt();
if(math>=100)
{
System.out..
分类:
编程语言 时间:
2014-06-10 23:20:46
阅读次数:
344
importjava.util.*;
publicclassPay{
publicstaticvoidmain(String[]args){
Scannerinput=newScanner(System.in);
System.out.println("************消费单************");
System.out.println("购物物品\t单价\t个数\t金额");
System.out.println("T桖\t¥245\t2\t¥..
分类:
编程语言 时间:
2014-06-10 22:47:01
阅读次数:
315
语法说明 1、procedure-name:
存储过程的名字,在同一个数据库的同一模式下,不能存在存储过程名相同参数数目相同的存储过程,即使参数的类型不同也不行。2、(IN | OUT | INOUT
parameter-name data-type,...) :传入参数 IN:输入参数 OUT:....
分类:
数据库 时间:
2014-06-10 20:58:52
阅读次数:
296
原题地址:https://oj.leetcode.com/problems/roman-to-integer/题意:Given
a roman numeral, convert it to an integer.Input is guaranteed to be within the
range f...
分类:
编程语言 时间:
2014-06-10 19:34:10
阅读次数:
255
百度了一下vlookup的语法规则:
该函数的语法规则如下:
VLOOKUP(lookup_value,table_array,col_index_num,range_lookup)
参数
简单说明
输入数据类型
lookup_value
要查找的值
数值、引用或文本字符串
...
分类:
其他好文 时间:
2014-06-10 18:13:53
阅读次数:
253
java类加载
先来看一段小程序:
package com;
public class Main1 {
static {
System.out.println("1111") ;
}
public static void main(String[] args) {
System.out.println("2222") ;
}
}
输出结果为:
111...
分类:
编程语言 时间:
2014-06-10 17:27:38
阅读次数:
272
原题地址:https://oj.leetcode.com/problems/integer-to-roman/题意:Given
an integer, convert it to a roman numeral.Input is guaranteed to be within the
range f...
分类:
编程语言 时间:
2014-06-10 17:06:11
阅读次数:
261
linux下编译hello.c 程序,使用gcc hello.c,然后./a.out就可以运行;在这个简单的命令后面隐藏了许多复杂的过程,这个过程包括了下面的步骤
宏定义展开,所有的#define 在这个阶段都会被展开
预编译命令的处理,包括#if #ifdef 一类的命令
展开#include 的文件,像上面hello world 中的stdio.h , 把stdio.h中...
分类:
系统相关 时间:
2014-06-10 15:11:16
阅读次数:
414
try{
String cmds="java -version";
Process p = Runtime.getRuntime().exec(cmds);
int exitValue = 1;
if((exitValue = p.waitFor()) != 0)
{
p.destroy();
System.out.println("exitValue:"+exitValue);
...
分类:
编程语言 时间:
2014-06-10 07:57:42
阅读次数:
341
以前碰到过好几次eclipse不能自动弹出提示的情况,每次总是弄好之后就不再管它,结果下次遇到相同的问题,又到网上去搜索一大堆答案很多都不能解决实际问题,费了时间还没有效果,现在这里记录下来以下两种方法:
一、只弹出简单的单词提示(如输入system.的时候自动弹出out、in等字段的那种):
点击eclipse上面的windows-->
preferences --> ...
分类:
系统相关 时间:
2014-06-10 06:34:14
阅读次数:
320