[c语言:从键盘上输入数字形式的年月日输出英文形式的年月日并]void main() { int y,m,d,a; scanf("%d%d%d",&y,&m,&d); if(m==1||m==2) { m+=12; y--; } a=(d+2*m+3*(m+1)/5+y+y/4-y/100+y/400)%7+1;//这是一个公式,下就知道了。 printf("输入...+阅读
import java.util.*;
import java.text.SimpleDateFormat;
public class test
{
public static void main (String args[])
{
Date d = new Date();
long longtime = d.getTime();
System.out.println(longtime);
//你获得的是上面的long型数据吧
String time = d.toLocaleString();
//你可以简单的得到本地化时间,本来就是String类型的就不用转换了
System.out.println(time);
//也可以自己用SimpleDateFormat这个函数把它变成自己想要的格式,注意需要import java.text.SimpleDateFormat;
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
System.out.println(sdf.format(longtime));
}
}
以下为关联文档:
C语言的问题:根据输入的年月日输出该日为该年度的第几周第几//根据输入的年月日,输出该日为该年度的第几周、第几天、星期几。 //如输入: 2007,12,1 //则输出: 48z,335t,6xq int date[12]={31,28,31,30,31,30,31,31,30,31,30,31};#includ...
怎样用C语言编写:输入年份月份日期运行得到的是这一天是星#include<stdio.h> #include<math.h> main() { int a,b,c,k,g; int x,y; printf("请输入年月日,年月日之间用逗号隔开:"); scanf("%d,%d,%d",&a,&b,&c); x=a/100;//x代表这一年的前两...
c问题要求输入年月日输出像日历形式/*以输入时间为基准,显示当前年月的日历 可以按左右方向键,翻到上一月或下一月 可以按上下方向键,翻到上一年或下一年 */ #include#include#includeint leap(int year ) { if (...
c语言??输入任一年月日计算该年月日为星期几不必用 switch. 以前编过一个. 现在找出来配了个主程序. 你试试吧. ---输入年,月,日:2000,3,1 答: 2000年3月1日是星期三. ---输入年,月,日:2008,4,20 答: 2008年4月20日是星期日. -...
c语言输入年月日求出该天是星期几提示:可以参照2012年1int everyMonth[]={0,31,28,31,30,31,30,31,31,30,31,30,31}; void main() { int year,month,day; printf("请输入年_月_日:"); scanf("%d%d%d", &year, &month, &day); printf("星期:%...
怎么在当前Java程序中获取当前年月日//得到long类型当前时间 long l = System.currentTimeMillis(); //new日期对象 Date date = new Date(l); //转换提日期输出格式 SimpleDateFormat dateFormat = new Simple...
java有个时间是yyyy年MM月dd日中如何提取出单独的年月日直接通过格式转换的形式即可。举例: String str0 = "2015年07月05日"; Date d1 = new SimpleDateFormat("yyyy年MM月dd日").parse(str0);//定义起始日期 SimpleDateFormat sdf0 = n...
java如何得到年月日package test; import java.util.Calendar; public class Test { public static void main(String[] args) { Calendar cal=Calendar.getInstance();//使用日历类 int year=ca...
如何取java sql Date中的年月日java.sql.Date sdate = new java.sql.Date(System.currentTimeMillis()); //方法一(不建议使用) System.out.println("Year: " + sdate.getYear()); System.out.println("Month:...