㈠ java中怎麼得到當前時間的小時
Date date=new Date();
DateFormat format=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time=format.format(date);
㈡ 用java編寫一個程序,鍵入一個以秒為單位的時間長度,然後換算成小時、分和秒的組合表達方式並輸出結果。
publicclassTest{
privatestaticfinalintSECOND_PER_HOUR=60*60;
privatestaticfinalintSECOND_PER_MINUTE=60;
publicstaticvoidmain(String[]args){
longsecond=newScanner(System.in).nextLong();
longhour=second/SECOND_PER_HOUR;
second-=SECOND_PER_HOUR*hour;
intminute=(int)(second/SECOND_PER_MINUTE);
second-=SECOND_PER_MINUTE*minute;
System.out.println(String.format("%d小時%d分鍾%d秒",hour,minute,second));
}
}
㈢ java語言寫出:輸入一個秒數。轉換為小時:分:秒的格式輸出。
java語言寫出:輸入一個秒數。轉換為小時:分:秒的格式輸出。 Java程序:
import java.util.Scanner;public class test { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num; int hour = 0; int minute = 0; int second = 0; System.out.print("請輸入秒數:"); num = scan.nextInt(); second = num % 60; num -= second; if(num > 0) { num /= 60; minute = num % 60; num -= minute; if(num > 0) { hour = num / 60; } } System.out.printf("%d:%d:%d\n", hour, minute, second); }}
運行測試:
請輸入秒數:9876
2:44:36
輸入一個時、分、秒並鏈橡,把它轉換為一個秒數。
adobe encore,直接導入mpg,輸出,刻錄
你去迅雷或者電驢看看。
輸入一數字作為秒數,按小時,分鍾,秒的格式輸出。(x:x:x) JAVA編寫 請不要使用循環語句 求完整代碼
沒有詳細測試過,你可以測試一下
public class DateChanger {
public static void main(String[] args) {
測試要輸入的秒數
int m = 3661;
秒數
int ss = m%60;
小喚銷時數
int hh = m/3600;
int mm = hh==0?m/60:(m%3600)/60;
System.out.println(hh+":"+mm+":"+ss);
}
}
2.輸入一個秒數,輸出x小時x分x秒比如:輸入7199,輸出1小時59分59秒
一個數學計算問題。 int hours=0,minutes=0,seconds; printf("input second:"); scanf("%d",&seconds); hours=second/3600; minutes=(second%3600)/60; seconds=seconds%60; printf("%d時%d分%d秒",hours,minutes,seconds);
C語言問題!輸入秒數~將他轉換為用小時分鍾秒來表示~
int s;
scanf("%d", &s);
time_t x = s;
tm * t = localtime(x);
tm 結構里絕旁有年月日,時分秒信息
輸入一個整數,表示秒數,將其轉化為天,小時 分 秒 輸出.
Dim day As Integer, hour As Integer, minute As Integer, second As Integer, temp As Integer temp = Val(TextBox.Text) second = temp Mod 60 temp = (temp - second) / 60 minute = temp Mod 60 temp = (temp - minute) / 60 hour = temp Mod 24 day = (temp - hour) / 24 MsgBox Str(day) & "天" & hour & "小時" & minute & "分" & second & "秒"
C語言 從鍵盤上輸入9個數 按3*3的格式輸出
#include <stdio.h>
int main()
{
int arr[3][3]
int i, j;
for(i=0; i<3;i++)
for (j=0; j<3;j++)
scanf("%d",arr[i][j]);
for (i=0; i<3;i++)
{
for (j=0;j < 3;j++)
printf("%d ",arr[i][j]);
printf("\n");
}
return 0;
}
輸入一個秒數,輸出為多少小時 多少分鍾 多少秒
#include <stdio.h>int main(){ int s, h, m; scanf("%d", &s); h = s / 3600; s %= 3600; m = s / 60; s %= 60; printf("%d小時%d分鍾%d秒\n", h, m, s); return 0;}
C語言:用%s格式符輸入一個數字字元串,將其轉換為整數並用%d輸出,例如輸入「1234」,輸出1234
#include<stdio.h>
#include<string.h>
main()
{
char str[20];
int a[20],i;
printf("input string:");
gets(str);
for(i=0;str[i]!='\0' && i<20;i++)
{
a[i]=(int)(str[i]-48);
printf("%2d ",a[i]);
}
getch();
}
㈣ java如何獲取當前時間 年月日 時分秒
//得到類型當前時間
longl=System.currentTimeMillis();
//new日期對
Datedate=newDate(l);
//轉換提日期輸出格式
SimpleDateFormatdateFormat=newSimpleDateFormat("yyyy-MM-
ddHH:mm:ss");System.out.println(dateFormat.format(date));
(4)javasecond擴展閱讀
package com.ob;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class DateTest {
public static void main(String[] args) throws ParseException {
Calendar now = Calendar.getInstance();
System.out.println("年: " + now.get(Calendar.YEAR));
System.out.println("月: " + (now.get(Calendar.MONTH) + 1) + "");
System.out.println("日: " + now.get(Calendar.DAY_OF_MONTH));
System.out.println("時: " + now.get(Calendar.HOUR_OF_DAY));
System.out.println("分: " + now.get(Calendar.MINUTE));
System.out.println("秒: " + now.get(Calendar.SECOND));
System.out.println("當前時間毫秒數:" + now.getTimeInMillis());
System.out.println(now.getTime());
Date d = new Date();
System.out.println(d);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateNowStr = sdf.format(d);
System.out.println("格式化後的日期:" + dateNowStr);
String str = "2012-1-13 17:26:33";
//要跟上面sdf定義的格式一樣
Date today = sdf.parse(str);
System.out.println("字元串轉成日期:" + today);
}
}
㈤ 如何用java取得年,月,日,時,分,秒
這個問題可以用兩種方式得到:
方法一:在java中可以使用Date類直接獲得,但是這個方法過時了,不推薦使用。
方法二:使用 java.util.Calendar 類。
代碼例子:
//方法1:雖然還可以用,但是已經不建議使用,已經過時。
Datedate=newDate();
intold_y=date.getYear()+1900;//得到年份。因為得到的是1900年後至今過了多少年,所以要加1900
intold_m=date.getMonth()+1;//因為得到的結果是0~11,故而加一。
intold_d=date.getDate();//得到月份中今天的號數
System.out.println("現在是:"+old_y+"-"+old_m+"-"+old_d+"(使用過時方法)");//
//方法2:推薦使用
Calendarcalendar=Calendar.getInstance();
intnow_y=calendar.get(Calendar.YEAR);//得到年份
intnow_m=calendar.get(Calendar.MONTH)+1;//得到月份
intnow_d=calendar.get(Calendar.DATE);//得到月份中今天的號數
intnow_h=calendar.get(Calendar.HOUR_OF_DAY);//得到一天中現在的時間,24小時制
intnow_mm=calendar.get(Calendar.MINUTE);//得到分鍾數
intnow_s=calendar.get(Calendar.SECOND);//得到秒數
System.out.println("現在是:"+now_y+"-"+now_m+"-"+now_d+""+now_h+":"+now_mm+":"+now_s+"(使用推薦方法)");
結果:
現在是:2015-11-9(使用過時方法)
現在是:2015-11-9 18:7:42(使用推薦方法)