ICode9

精准搜索请尝试: 精确搜索
  • C语言 寻找最佳存款方案2021-11-27 21:31:08

    本关任务:编写一个程序,给出最佳存款方案。具体任务描述如下: 已知银行整存整取不同期限的年利率分别为    假设银行对定期存款过期部分不支付利息,现在某人有20000元,要存20年,问怎样存才能使20年后得到的本利之和最多?   1 #include <stdio.h> 2 #include <stdlib.h> 3 #includ

  • 实验四2021-11-27 16:32:43

    #include<iostream> #include<typeinfo> class Graph { public: virtual void draw(){std::cout<<"Graph::draw():just as an interface\n";} }; class Rectangle:public Graph { public: void draw(){std::cout<<"Rectangl

  • Java判断输入的年份是否为闰年2021-11-27 14:35:00

    import java.util.Scanner; public class demo1 {public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请输入一个年份:"); int year = scanner.nextInt(); if(year %4 == 0 && year % 100 != 0 || ye

  • 自定义日历2021-11-26 14:34:05

    <template> <div class="calendar"> <div class="calendar-header">{{ year }} 年 {{ month }} 月</div> <div class="calendar-row-header"> <div class="row-item" v-for="(i

  • 【转】rust中impl关键字的用法(二)---What is the Impl keyword in Rust?2021-11-24 23:34:37

       原文:https://www.educative.io/edpresso/what-are-traits-in-rust -------------------------------------------   A trait in Rust is a group of methods that are defined for a particular type. Traits are an abstract definition of shared behavior am

  • Java实验三:继承和多态2021-11-23 22:33:02

    多态和继承编程练习 一、不同国籍身高体重问题二、银行存款利息问题三、用类封装手机的基本属性和功能四、公司支出的总薪水五、通过类来求三种图形的面积六、动物声音模拟器 一、不同国籍身高体重问题 编写程序模拟中国人、美国人是人;北京人是中国人。除主类外,程序中还

  • P1104 生日2021-11-23 15:04:07

    题目传送门 #include <bits/stdc++.h> using namespace std; const int N = 110; struct Student { string Name; int year, month, day, num; } a[N]; bool cmp(const Student &a, const Student &b) { if (a.year == b.year) if (a.month ==

  • 哨兵2的NDVI时间序列数据下载2021-11-23 00:00:44

    1.导入哨兵2数据集 2.绘制下载区域 3.修改绘制区域与数据集名称 4.运行下面代码 //define ROI var roi = ee.FeatureCollection(ROI) //哨兵2去云处理 function s2_rmcloud(image) { var qa = image.select('QA60'); var cloudBitMask = 1 << 10; var cirrusBi

  • 函数封装【闰年,冒泡,翻转数组等....】【案例】2021-11-21 13:01:57

    函数封装 函数章节学习中,敲了一些有代表性的案例… 巩固一下函数的运用吧… 运行以后的图就不再放这里了,直接复制代码去VS-code里运行一下吧… 一·用户输入年份,判断这一年的2月有多少天: <script> // 用户输入年份,判断这一年的2月有多少天 利用函数的调用 fun

  • 数据库第三章2021-11-21 13:00:19

    SQL语言分为 数据定义语言(Data-Definition Languagem DDL) 数据操纵语言(Data-Manipulation Languagem DML) 完整性(integrity) 视图定义(view definition) 事务控制(transaction control) 嵌入式SQL和动态SQL 授权   SQL数据定义 每个关系的模式 每个属性

  • Django学习(2)2021-11-20 21:59:09

    路由系统 用户从浏览器发出的请求会首先打到django url的路由分发系统这里,然后再到views视图->models模型->template模板->用户浏览器。 换言之,urls.py 文件主载着你整个网站的所有页面&接口的url分配。Django 的路由本质上是通过正则表达式来对用户请求的url进行匹配 urls.p

  • C语言实现字符串格式时间转换时间戳2021-11-18 14:03:08

     1.函数实现 #include <string.h> #include <stdio.h> #include <time.h> /* 判断是否闰年 */ #define IS_LEAP_YEAR(year) \ (((year) % 400 == 0) || ((year) % 4 == 0 && (year) % 100 != 0)) ?

  • 1.输入某年某月某日得一年的第几天2.某年第几天得该年几月几日3.Switch语句综合两种情况2021-11-17 09:33:29

    #include <stdio.h> #include <math.h> int DayofYear(int year, int month, int day); int main() { int year,month,day; printf("Please enter year, month, day:"); scanf("%d,%d,%d",&year,&month,&day);

  • 简单暴力(计算今年第几天)2021-11-15 21:01:43

    题目 请你计算出 xx 年 yy 月 zz 日是 xx 年的第几天。 请注意闰年对答案的影响。 输入格式 一行三个整数,xx,yy 和 zz。(1583\le x\le 21001583≤x≤2100)。数据保证输入合法。 输出格式 一个整数,表示是第几天 输入输出 输入 输出 2016 3 1 61 1900 3 1 60 思路 利用非

  • 记录:JS获取当前年、月、日、时、分、秒2021-11-15 13:59:38

    function getCurrentDateTime(){ let date = new Date(); let year = date.getFullYear(); let month = date.getMonth() + 1; let day = date.getDate(); let hours = date.getHours(); let minutes = date.getMinutes(); let seconds = date.getSeconds(); function

  • 计算今年第几天2021-11-14 20:33:08

    计算x年y月z日是今年第几天 输入格式 2016 3 1 输出格式 61 #include <stdio.h> int main() { int day, month, year, sum, l; scanf("%d %d %d", &year, &month, &day);//输入年 月 日 switch (month) { // 先计算某月以前月份的总天数 case 1: sum = 0; break;

  • C#练习题:打印日历(控制台)2021-11-14 18:58:18

    代码 Calendar类 using System; using System.Collections.Generic; using System.Text; namespace B_CSharp_lianxi { class Calendar { #region 练习一:打印日历 /*1.在控制台中显示日历的方法 * -调用12遍月历 *2.在控制台中显

  • javase练习题62021-11-14 17:33:52

    成员变量基础练习 第1题 案例: ​ 声明员工类Employee,包含属性:编号、姓名、年龄、薪资, ​ 声明Test01测试类,并在main方法中,创建2个员工对象,并为属性赋值,并打印两个员工的信息。 public class Employee { private int number; private String name; private int

  • 判断年份是闰年还是平年2021-11-14 13:03:31

    一、介绍闰年和平年的区别 (1).闰年和平年的区别有主要在于:含义不同、年总日数不同、基本解释不同等。 1、含义不同:非整百年,能被4整除的为闰年;整百年,能被400整除的是闰年。如果有余数,那么这一年是平年。 2、年总日数不同:闰年一年366天,平年一年365天。 3、基本解释不同:平年是指

  • JAVA时间处理2021-11-13 22:02:51

    public static void main(String[] args) { String s = “2021110506:45:00”; String year=s.substring(0,4); String moon=s.substring(4,6); String day=s.substring(6,8); String time=s.substring(8,16); System.out.println(year); System.out.println(moon); System.o

  • 02 python都有哪些语言元素?2021-11-13 20:34:31

    语言元素 数据类型 整型 浮点型 字符串型 布尔型 小脚本练习 华氏度转换为摄氏度 #输入华氏度 F=float(input('请输入华氏温度:')) #转化成摄氏度 C=(F-32)/1.8 #打印 print('%.2f华氏度=%.2f摄氏度'%(F,C)) 输入圆的半径计算周长和面积 #输入圆的半径 r=float(input('

  • matlab绘图2021-11-13 19:34:52

    双y坐标,条形图+折线图,y轴刻度值离散化 plot()与semilogy()对比 效果:    程序: clear all;clc [num,txt,raw]=xlsread('matlab绘图数据.xlsx'); %读入数据 year=num(:,1); x=num(:,2); ux=num(:,3); ux1=num(:,4); ux2=num(:,5); ux3=num(:,6); figure(1); yyaxis left; bar(year,x,

  • shell中日期循环的方式2021-11-13 19:34:16

    第一种 # 这里的例子以周为循环 !/bin/bash begin_date="20160907" end_date="20170226" while [ "$begin_date" -le "$end_date" ]; do year=${begin_date:0:4} week_of_year=$(date -d "$begin_date" +%W) echo $year,

  • “21天好习惯”第一期-212021-11-12 21:02:19

    这是计算有多少个闰年的题目。 从键盘输入你的出生年和今年的年份,编程判断并输出从你的出生年到今年之间中有多少个闰年。 程序的运行结果示例1:  Input your birth year:2000↙ Input this year:2020↙ 2000 2004 2008 2012 2016 2020 count=6 代码如下: #include<stdio.h> int

  • “21天养成好习惯”第一期-202021-11-11 23:32:41

    这是pta上的一题 # include<stdio.h> int main(void) {     int salary_h=0;  unsigned int year=0;  unsigned int  hours=0;  float  salary=0;  scanf("%u %u",&year,&hours);  if(year<5)  {   salary_h=30;  }  else {salary_h=50;  }  if(hours<

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有