国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務合肥法律

CMT120代做、Python/Java設計程序代寫

時間:2023-12-13  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Cardiff School of Computer Science and Informatics
Coursework Assessment Pro-forma
Module Code: CMT120
Module Title: Fundamentals of Programming

Assessment Title: Programming Challenges
Date Set: 23rd October 2023
Submission date and Time: 14th December 2023 at 9:30AM
Return Date: 15th January 2024
If you have been granted an extension for Extenuating Circumstances, then the submission deadline and return date will be
later than that stated above. You will be advised of your revised
submission deadline when/if your extension is approved.
If you defer an Autumn or Spring semester assessment, you
may fail a module and have to resit the failed or deferred components.
If you have been granted a deferral for Extenuating Circumstances, then you will be assessed in the next scheduled assessment
period in which assessment for this module is carried out.
If you have deferred an Autumn or Spring assessment and are
eligible to undertake summer resits, you will complete the deferred
assessment in the summer resit period.
If you are required to repeat the year or have deferred an assessment in the resit period, you will complete the assessment in
the next academic year.
As a general rule, students can only resit 60 failed credits in
the summer assessment period (see section 3.4 of the academic
regulations). Those with more than 60 failed credits (and no more
than 100 credits for undergraduate programmes and 105 credits
for postgraduate programmes) will be required to repeat the year.
There are some exceptions to this rule and they are applied on a
case-by-case basis at the exam board.
If you are an MSc student, please note that deferring assessments may impact the start date of your dissertation. This is
1
because you must pass all taught modules before you can begin
your dissertation. If you are an overseas student, any delay may
have consequences for your visa, especially if it is your intention
to apply for a post study work visa after the completion of your
programme.
NOTE: The summer resit period is short and support from
staff will be minimal. Therefore, if the number of assessments is
high, this can be an intense period of work.
This assignment is worth 40% of the total marks available for this module. If coursework is submitted late (and where there are no extenuating
circumstances):
1. If the assessment is submitted no later than 24 hours after the deadline,
the mark for the assessment will be capped at the minimum pass mark;
2. If the assessment is submitted more than 24 hours after the deadline,
a mark of 0 will be given for the assessment.
Extensions to the coursework submission date can only be requested
using the Extenuating Circumstances procedure. Only students with approved extenuating circumstances may use the extenuating circumstances
submission deadline. Any coursework submitted after the initial submission
deadline without approved extenuating circumstances will be treated as
late.
More information on the extenuating circumstances procedure can be
found on the Intranet:
https://intranet.cardiff.ac.uk/students/study/exams-and-assessment/
extenuating-circumstances
https://intranet.cardiff.ac.uk/students/study/your-rights-and-responsibilities/
academic-regulations
By submitting this assignment you are accepting the terms of the following declaration:
2
I hereby declare that my submission (or my contribution to it in the
case of group submissions) is all my own work, that it has not previously
been submitted for assessment and that I have not knowingly allowed it to
be copied by another student. I declare that I have not made unauthorised
use of AI chatbots or tools to complete this work, except where permitted. I
understand that deceiving or attempting to deceive examiners by passing off
the work of another writer, as one’s own is plagiarism. I also understand
that plagiarising another’s work or knowingly allowing another student to
plagiarise from my work is against the University regulations and that doing
so will result in loss of marks and possible disciplinary proceedings.
3
Assignment
To complete this coursework, you must complete a set of programming challenges in Python and JavaScript.
Each challenge can be awarded a maximum of 10 marks. Therefore,
perfectly solving five exercises will give you 50 marks (pass), and perfectly
solving all the exercises will give you 100 marks. An exercise is solved perfectly only if high-quality functional code is submitted in both Python and
JavaScript. Providing high-quality functional code in only one programming
language results in a lower mark (i.e., five marks out of ten). Therefore, you
can still pass the coursework by only completing problems in one language,
or by completing half the problems in both languages.
You might not be able to solve all the exercises. This is fine. You are
not all expected to be able to solve all of the challenges in both languages.
However, you should be able to solve enough of the exercises in one or both
languages to be able to pass the assessment and demonstrate you have met
the learning outcomes being assessed.
The challenges are described in detail below, and you are also provided
with a set of test cases that will check whether your code produces the
required output or not. In particular, you will be given two test cases per
exercise. You should make sure that your submitted code passes the supplied
tests to ensure it functions correctly. However, please note that your code
will be tested against a further two different test cases, which you have not
been supplied with. In total then each exercise will be tested against four
test cases, including the two provided. You should therefore ensure that you
try to cover all possible inputs and that your code still functions correctly.
Your code will need to pass all 4 tests (2 seen, 2 unseen) in order to score
full marks for the functionality. Note that there is a time limit of 3 seconds
to each test. If your code does not provide a correct answer within the time
limit the test is failed.
Instructions for completing the challenges
• You will find template code for the assignment on Learning Central.
This provides two folders, python and js. Inside each folder you
will find a template.{js/py} file, in which you should complete your
solutions. You will also find a test_template.{js/py} file containing
the test cases that will check your code’s functionality, along with a
folder of test data required for some of the tests. You are also supplied
4
with a Readme.md file containing detailed instructions on how to run
the test cases to check your code.
• In the templates, the functions’ interfaces are given but the functions’
bodies are empty. Solve the exercises by correctly filling in the functions’ bodies.
• It is forbidden to change the functions’ interfaces. However, new
functions can be defined to support the solution of the exercises.
These functions must have names that are different from those already
present in the templates.
• You are NOT allowed to import any additional modules. Use of module functions will result in zero marks for the corresponding exercises.
• In all the exercises, you can assume that the inputs are provided in the
appropriate format and type. Therefore, error-checking is not needed.
• The final submission should NOT contain any input, print, or console.log
statements.
You will be given marks for solving each problem in both programming
languages within the time limit. Further marks will be awarded for solution
style and quality. The mark scheme is described in further detail later.
Exercise 1: Smallest Fraction Terms
Complete the function ‘exercise1’ that takes two positive integers as its
parameters. The parameters represent the numerator and denominator of a
fraction. The function reduces the fraction to lowest terms and then returns
both the numerator and the denominator of the reduced fraction as integers.
Python: The numerator and denominator should be returned as a tuple.
JavaScript: The numerator and denominator should be returned as
elements 0 and 1 of a 2-item array.
Examples:
• exercise1(12,15) returns (4, 5) in Python and [4,5] in JavaScript.
• exercise1(8,4) returns (2,1) in Python and [2,1] in JavaScript.
5
Exercise 2: Magical Dates
A magic date is a date where the day multiplied by the month is equal to
the last two digits of the year.
For example 10/6/1960 is a magic date because 6 times 10 is 60, which
is equal to the last two digits of 1960.
Complete the function ‘exercise2’ that takes three positive integers as its
parameters, day, month, and year, respectively, and returns True if the date
is a magic date, or False otherwise.
Examples:
• exercise2(10,6,1960) returns True in Python and true in JavaScript.
• exercise2(10,6,1970) returns False in Python and false in JavaScript.
Exercise 3: Find All Sublists
A sublist is a list that constitutes a portion of a larger list. A sublist can
consist of a single element, multiple elements, or no elements at all.
Example: [1], [2], [3] and [4] are all sublists of [1, 2, 3, 4]. The
list [2, 3] is also a sublist of [1, 2, 3, 4], but [2, 4] is not a sublist of
[1, 2, 3, 4] because the elements 2 and 4 are not adjacent in the longer
list. The empty list is a sublist of any list. As a result, [] is a sublist of
[1, 2, 3, 4]. A list is a sublist of itself, meaning that [1, 2, 3, 4] is
also a sublist of [1, 2, 3, 4].
Using the above definition of a sublist, complete the function ‘exercise3’
that takes a list as its only parameter, and returns a list containing every
possible sublist of the input list.
Examples:
• exercise3([1,2,3,4]) returns
[[],[1],[2],[3],[4],[1,2],[2,3],[3,4],[1,2,3],[2,3,4],[1,2,3,4]].
• exercise3([’a’,2,(0,"zero")]) returns
[[],[’a’],[2],[(0,"zero")],[’a’, 2],[2, (0,"zero")],[’a’, 2, (0,"zero")]].
The order of the elements of the list returned is not important. However,
the order of the elements inside of each list should reflect the order in the
original list. For example, [’a’, 2] is correct, while [2, ’a’] is not.
6
Exercise 4: English to Pig Latin Translator
Pig Latin is a language game or argot in which English words are altered,
usually by adding a fabricated suffix or by moving the onset or initial consonant or consonant cluster of a word to the end of the word and adding a
vocalic syllable to create such a suffix (Wikipedia).
The following rules are used to translate English into Pig Latin:
• If the word begins with a consonant (including ‘y’), then all letters at
the beginning of the word, up to the first vowel (excluding ‘y’), are
removed and then added to the end of the word, followed by ‘ay’.
Example: ‘computer’ becomes ‘omputercay’ and ‘think’ becomes ‘inkthay’.
• If the word begins with a vowel (not including ‘y’), then ‘way’ is added
to the end of the word.
Example: ‘algorithm’ becomes ‘algorithmway’ and ‘office’ becomes
‘officeway’.
Complete the function ‘exercise4’ that takes a string as the only parameter and return a string representing its Pig Latin translation.
Examples:
• exercise4(‘algorithm’) returns ‘algorithmway’.
• exercise4(‘computer’) returns ‘omputercay’.
The function should correctly handle uppercase letters and punctuation
marks such as commas, periods, question marks and exclamation marks.
You can assume that only the first letter can be uppercase and that punctuation marks can only be at the end of the word.
Example: if an English word begins with an uppercase letter, then
its Pig Latin representation should also begin with an uppercase letter and
the uppercase letter moved to the end of the word should be changed to
lowercase. For example, ‘Computer’ should become ‘Omputercay’. If a
word ends in a punctuation mark, then the punctuation mark should remain
at the end of the word after the transformation has been performed. For
example, ‘Science!’ should become ‘Iencescay!’.
Exercise 5: Morse Code Encoder
Morse code is a method used in telecommunication to encode text characters
as standardized sequences of two different signal durations, called dots and
7
dashes (or dits and dahs). Morse code is named after Samuel Morse, an
inventor of the telegraph (Wikipedia).
Complete the function ‘exercise5’ that takes a string of letters and numbers as the only parameter and returns a string with its Morse code representation.
Use a period ‘.’ to represent a dot, and a minus sign ‘-’ to represent a
dash. The mapping from letters and numbers to dashes and dots is illustrated in the following figure.
The function should leave a single space between each sequence of dashes
and dots and it should ignore any characters that are not letters or numbers.
Example:
• exercise5(‘Hello, World!’) returns ‘.... . .-.. .-.. --- .-- --- .-. .-.. -..’.
• exercise4(‘Dracarys!!!!’) returns ‘-.. .-. .- -.-. .- .-. -.-- ...’.
Hint: use dictionaries to represent the Morse code table.
Exercise 6: Spelling Out Numbers
Complete the function ‘exercise6’ that takes an integer between 0 and 999
as its only parameter, and returns a string containing the English words for
that number.
• exercise6(21) returns ‘twenty-one’.
• exercise6(191) returns ‘a hundred and ninety-one’.
Hint: Use one or more dictionaries to implement your solution rather
than large if/elif/else constructs.
8
Exercise 7: No Functions without Comments
Complete the function ‘exercise7’ that takes a string containing a filename
as its only parameter. The filename should be a source file. The function
reads the file, identifies functions that are not immediately preceded by a
comment and returns a list of their name (represented as strings).
Python: For the purposes of this exercise, assume that any line that
begins with ‘def’, followed by a space, is the beginning of a function definition. Also, assume that, when the function has a comment, the comment
character, ‘#’, will be the first character on the previous line.
JavaScript: For the purposes of this exercise, assume that any line that
begins with ‘function’, followed by a space, is the beginning of a function
definition. Also, assume that, when the function has a comment, the singleline comment symbol, ‘//’, will be the first character on the previous line.
Exercise 8: Justify any Text
Complete the function ‘exercise8’ taking two parameters, a filename, and
a maximum length (i.e., a strictly positive integer number). The function
opens the file, reads every line, and returns a list of strings where every
string represents a line that is filled as much as possible without exceeding
the given maximum length.
Example: consider a file containing the following lines from ‘Alice’s
Adventures in Wonderland’.
Alice was
beginning to get very tired of sitting by her
sister
on the bank, and of having nothing to do: once
or twice she had peeped into the book her sister
was reading, but it had
no
pictures or conversations in it,"and what is
the use of a book," thought Alice, "without
pictures or conversations?"
The corresponding output for length = 50 would be:
[’Alice was beginning to get very tired of sitting’,
’by her sister on the bank, and of having nothing’,
’to do: once or twice she had peeped into the book’,
9
’her sister was reading, but it had no pictures or’,
’conversations in it, "and what is the use of a’,
’book," thought Alice, "without pictures or’,
’conversations?"’]
You do not need to deal with multiple paragraphs of text. That is,
you can group together words from different paragraphs. Finally, you can
assume that no word is longer than the maximum length.
Exercise 9: Knight’s Challenge
Complete the function ‘exercise9’ that takes three parameters: an initial
position, a final position, and a number of moves. The function returns
True if a knight on an empty chessboard can get to the final position from
the starting position in at most the given number of moves; otherwise, the
function returns False. Useful facts:
• A chessboard is an 8x8 square board.
• Each cell of the chessboard is identified by its coordinates: a letter
from ‘a’ to ‘h’ that identifies the column, and a number from 1 to 8
that identifies the row. The positions are provided to the functions
using this format.
• The chessboard contains only the knight, which is located at the specified initial position.
• A knight may move two squares vertically and one square horizontally,
or two squares horizontally and one square vertically.
Examples:
• exercise9(’a1’, ’c5’, 2) returns True.
• exercise9(’c6’, ’h1’, 1) returns False.
Hint: You may want to use recursion.
Exercise 10: War of Species
Complete the function ‘exercise10’ that takes as input a list of strings of
the same length, representing a rectangle grid. The characters in the list
represent the cells of the grid. The cells can take three possible values:
10
• ’X’, representing an individual of the species X.
• ’O’, representing an individual of the species O.
• ’.’, representing an empty cell.
Example:
["X.......", "........", ".......O"]
is a 3x8 grid with an ’X’ in position (1,1) and a ’O’ in position (3,8).
The configuration provided in the list represents the current state of an
environment with two competing species. Every cell interacts with its eight
neighbours, which are the cells that are horizontally, vertically, or diagonally
adjacent. The function should return a list of strings representing the next
state of the environment according to the following rules:
• An empty cell becomes non-empty if it is surrounded by at least two
individuals of the same species. In particular, it becomes an individual
of the most frequent species in its neighbourhood. In case of a draw
between the species, the cell remains empty.
• A non-empty cell becomes empty if it is surrounded by more than six
non-empty cells, regardless of their species.
• A non-empty cell becomes empty if it is surrounded by less than three
members of its species.
• A non-empty cell becomes empty if it is surrounded by more members
of the opposite species than members of its species.
• In any other circumstances, a cell does not change its value.
You can assume that the format of the input list of strings is correct.
Example: The initial environment
["XX......", "XX....O.", ".....OOO"]
becomes
["XXX.....", "XXX..OOO", "XX....O."]
11
Learning Outcomes Assessed
• LO1: Use high-level programming languages to complete programming
tasks.
• LO2: Demonstrate familiarity with programming concepts, simple
data-structures and algorithms.
Criteria for assessment
Credit will be awarded against the following criteria.
Each exercise can be awarded a maximum of 10 marks. Therefore, perfectly solving five exercises will give you 50 marks (pass), and perfectly
solving ten exercises will give you 100 marks.
Each exercise is marked for both function (8 marks max) and style/quality
(2 marks max). Exercises that are not a real attempt at solving the problem
presented will receive zero marks.
Functionality [8 marks/exercise max] The functional part of the submission is automatically marked by scripts that run the completed function
against a set of test cases. You will be provided with two test cases per exercise. During marking, each exercise will be tested against four test cases,
including the two provided. A test should take less than three seconds to
complete, otherwise, it is considered failed. For each language (Python and
JavaScript) and exercise, passing one test will award you 1 mark. Therefore,
the maximum functionality mark of 8 will be given only if all the tests are
passed in both languages.
Code quality and style [2 marks/exercise max] Each version of the
exercise (i.e., Python and JavaScript) is assessed independently, according
to the following criteria:
12
High quality and style (50-100%,
0.5-1 marks per exercise)
Low quality and style (0-50%, 0-0.5
marks per exercise)
Code is elegant
Code has no redundancies
Code is well commented
Code is perfectly modular (i.e.,
appropriate functions and/or classes
defined)
Code makes smart use of built-in
language features and classes.
Code is messy or overly verbose
Code has multiple redundancies and
repetitions
Code is lacking in meaningful
comments
Code is disorganised
Code does not make use of language
features
Therefore, an exercise solved in only one language could achieve at most
one of the style/quality marks. To obtain both marks, the exercise must be
solved in both languages. Also, only exercises that pass at least two tests
are evaluated for style and quality.
Feedback and suggestion for future learning
Feedback on your coursework will address the above criteria. Feedback and
marks will be returned on the return date via Learning Central and/or email.
The feedback from this assignment will be useful for your second programming assignment, and will also be relevant for any future programming
tasks.
Submission Instructions
All coursework should be submitted via upload to Learning Central.
Description Type Name
Python Code 1 .py file [Student number].py
JavaScript Code 1 .js file [Student number].js
Replace [Student number] with your Cardiff’s user name, which is typically a letter ’c’ (or ’d’) + your student number, e.g. c1234567.
Any code submitted will be run on a system equivalent to the laptops
provided to the students, and must be submitted as stipulated in the instructions above. The code should run without any changes being required
to the submitted code, including editing of filenames.
13
Any deviation from the submission instructions above (including the
number and types of files submitted) may result in a deduction of up to
10% from the overall mark.
Staff reserve the right to invite students to a meeting to discuss coursework submissions.
Support for assessment
Questions about the assessment can be asked on https://stackoverflow.com/c/comsc/
and tagged with ‘[CMT120]’, during Tutorial lectures in Weeks 3-11, and
in the Drop-in Practical Support sessions. It is important to notice that
only general guidance will be provided. The tasks of solving the exercises,
defining the logic and debugging the code (among others) are the key focus
of the assessment and therefore a responsibility of the students.
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代寫IERG 4130、代做c/c++設計編程
  • 下一篇:CS320代做、代寫面向堆棧的程序設計語言
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術(shù)服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結(jié)構(gòu)仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業(yè)
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養(yǎng) 十大衛(wèi)浴品牌排行 suno 豆包網(wǎng)頁版入口 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務 | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产情人节一区| 91九色蝌蚪国产| 91久久久久久久一区二区| 女同一区二区| 日本免费在线精品| 国产精品高清在线| 久久久精品在线视频| 产国精品偷在线| 国产美女被下药99| 男人天堂a在线| 欧美做受777cos| 少妇人妻在线视频| 亚洲国产精品久久久久久女王 | 欧美亚洲视频在线看网址| 亚洲a∨日韩av高清在线观看 | 国产精品69久久| 国产男女免费视频| 国产精品久久久久久久久久久久久 | 69精品小视频| 97人人干人人| 精品网站在线看| 黄色av网址在线播放| 国产一区亚洲二区三区| 国产伦精品一区二区三区高清版| 国产乱码精品一区二区三区日韩精品| 成人毛片一区二区| 久久精品国产第一区二区三区最新章节| 国产成人精品电影| 国产精品视频色| 国产99久久精品一区二区 夜夜躁日日躁 | 国产色综合天天综合网| 国产九区一区在线| 91免费的视频在线播放| 久久久精品视频成人| 久久成人这里只有精品| 亚洲一区二区三区精品动漫| 日韩av不卡播放| 精品一区二区三区日本| 91九色视频在线观看| 精品国内亚洲在观看18黄| 欧美xxxx18性欧美| 日本一区二区视频| 国内一区在线| 久久免费高清视频| 精品国产_亚洲人成在线| 熟女少妇精品一区二区| 国内精品一区二区| 久久久福利视频| 久久亚洲综合国产精品99麻豆精品福利 | 宅男在线精品国产免费观看| 日本一区精品| 国产日韩欧美亚洲一区| 久久综合九九| 精品久久一二三| 日本不卡一二三区| 国产精品香蕉av| 日韩中文理论片| 午夜欧美性电影| 国产日韩欧美亚洲一区| 久久精品99国产精品酒店日本| 亚洲国产欧洲综合997久久| 国产在线视频不卡| 久久国产成人精品国产成人亚洲| 九九久久综合网站| 经典三级在线视频| 久久久久久伊人| 午夜欧美不卡精品aaaaa| 国产又黄又大又粗视频| 久久艹国产精品| 亚洲在线不卡| 国产伦精品一区二区三区高清版| 精品国产一区二区三区久久久| 亚洲wwwav| 国产伦精品一区二区三区高清 | 霍思燕三级露全乳照| 久久精品国产美女| 伊人久久青草| 国内精品久久久久| 久久久久久香蕉| 亚洲字幕在线观看| 成人中文字幕在线播放| 精品免费日产一区一区三区免费 | 黄色www网站| 色噜噜国产精品视频一区二区| 无码播放一区二区三区| 99久久99久久精品国产片| 欧美激情久久久久| 国产又爽又黄的激情精品视频| 久热99视频在线观看| 欧美自拍视频在线| 久久久久久亚洲| 欧美精品尤物在线| www.日韩欧美| 欧美亚洲激情在线| 日韩一中文字幕| 青青影院一区二区三区四区| 久久资源av| 欧美最猛性xxxxx(亚洲精品)| 久久久久久久9| 热99久久精品| 日韩视频免费大全中文字幕| 欧美污视频久久久| 国产精品美腿一区在线看| 麻豆亚洲一区| 国产精品久久久久久超碰| 国产偷久久久精品专区| 永久免费看av| 91精品久久久久久蜜桃| 少妇一晚三次一区二区三区| 国产成人精品国内自产拍免费看| 人妻少妇精品久久| 国产精品日韩欧美一区二区三区| 麻豆成人av| 亚洲综合成人婷婷小说| 国产成人精品福利一区二区三区| 日韩视频在线播放| 国产精品久久九九| 99在线观看| 日韩欧美精品一区二区三区经典| 日韩视频精品在线| 国产欧美日韩专区发布| 无码免费一区二区三区免费播放 | 国产精品麻豆va在线播放| 国产日本欧美一区二区三区在线| 中文字幕精品—区二区日日骚| 91精品国产综合久久男男| 欧美又大又粗又长| 久久99精品久久久久久青青91| 久久这里只有精品23| 国严精品久久久久久亚洲影视| 在线视频欧美一区| 日韩在线视频免费观看| 国产中文欧美精品| 天天人人精品| 欧美不卡视频一区发布| 久久免费国产视频| 精品一区二区三区无码视频| 亚洲免费不卡| 国产精品日韩久久久久| 97精品免费视频| 国模无码视频一区二区三区| 亚洲一区二区精品在线观看| 国产精品入口日韩视频大尺度| 成人av网站观看| 今天免费高清在线观看国语| 性欧美长视频免费观看不卡| 国产精品极品在线| 久久综合毛片| 国产拍精品一二三| 欧美一区二区视频在线播放| 一区二区三区国产福利| 啊v视频在线一区二区三区| 国产精品一区二区欧美黑人喷潮水| 欧美亚洲日本网站| 日本高清不卡在线| 亚洲欧美综合一区| 欧美激情国产高清| 国产精品日韩欧美综合| 久久riav二区三区| 国产精品a久久久久久| 欧美成年人网站| 日韩一区av在线| 国产精品99免视看9| 国产女教师bbwbbwbbw| 欧美日韩性生活片| 日本免费高清不卡| 亚洲精品国产精品久久| 国产99久久九九精品无码| 国产精品日韩在线| 久久久噜噜噜久久久| 91高清免费在线观看| 97色在线观看免费视频| 国产主播一区二区三区四区| 欧美最大成人综合网| 亚洲18私人小影院| 真实国产乱子伦对白视频| 国产精品观看在线亚洲人成网| 日韩中文字幕国产| 丝袜亚洲欧美日韩综合| 国产精品91一区| 国产极品精品在线观看| 99久久自偷自偷国产精品不卡| 国产欧美日韩专区发布| 欧美日韩亚洲免费| 欧美精品与人动性物交免费看 | 91久久久久久久一区二区| 国产免费一区二区三区| 国产日韩精品一区观看| 国产中文字幕乱人伦在线观看| 国内精品一区二区三区| 黄色网在线视频| 国产偷人视频免费| 国产女主播一区二区| 国产精品一区=区| 成人久久久久久久久| 91国在线精品国内播放| 国产a级片免费观看| 久久久噜噜噜久久| 日韩中文字幕在线视频播放| 国产精品网红直播|