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

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

代寫KXO151、代做Java編程設(shè)計(jì)
代寫KXO151、代做Java編程設(shè)計(jì)

時(shí)間:2025-03-25  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Page 1 of 10
KXO151 Programming &    Problem    Solving
AIEN-SHOU    - 2025
Assignment    2
Deadline    for    Submission: 9PM    (Shanghai)    Wednesday,    Week    8,    16 April 2025
Maximum    Marks    Available:     15    (15%    of    the    total    assessment    for    KXO151)
Submission: Via    MyLO
NOTE: All    assignments    will    be    checked    for    plagiarism    by    a    specialist    Java    program    that    checks    
your    assignment    against    other    student’s    assignments    as    well    as    the    Internet    (including    help    
sites).
Assignment    Type: Individual
Requirements:
PLEASE    NOTE: This    assignment    is    to    be    completed    by    Students    individually.    If    you    need    help,    please    
look     at     the     textbook or     ask     your     lecturer.     Students     who     have     been     working     through     the     tutorial    
exercises    should    not    have    much difficulty in    completing    this    assignment.
PLEASE    NOTE: The    submitted    Java    code    must    be    able    to    be    compiled    from    the    command    line    using    
Javac    the Java    programming    language    compiler command,    or    from    a    basic    editor    such    as    jGrasp.    Be    
aware    that    development    programs    such    as    Eclipse    often    use    features    only    available    when    run    using    
their    system,    meaning    that    their    code    may    not    run    on    a    system    without    their development    program.    
Programs    that    do    not    run    from    the    command    line    using    javac    (to    compile)    and    java    (to    run)    because    
of    a    missing    development    program    feature    will    fail    the    assignment.        
You    are    required    to    perform    the    following    tasks:
Write     a     Java     application     program     named     Asst2.java which     provides     the     user     with     their    
'personalised '     number.     The     details (specifications)     of     this     task     are     given     below.     Note     that     the    
correctness     marks     you     receive     for     your     program     will     depend     on     how     well     it matches     this    
specification.    If    you    decide    to    implement    something    that    is    more    elaborate    than    specified,    you    should    
understand    that:
• There    will    be    no    marks    awarded    for    the    elaborations    you    have    designed    and    penalties    may    
be    applied    for    confusing/extraneous    code.
• Your    program    must    still    meet    the    basic    specifications    given    below.
The    program    is    to    implement    a    simple    personalised number    program.    The    user    will    be    asked    four    
questions    about    themselves.
• Their    family    name    (to    be    stored    in    a    String    that    may    not    contain    spaces).
• The    initial    (first    letter) of    their    first    given    name    (to    be    stored    in    a    char).
• Their    year    of    birth    (to    be    stored    in    an    int    variable).
• Whether    or    not    they    are    female    (to    be    stored    in    a    boolean    variable).
The    answers    to    these    questions    will    be    used    to    generate    a    ' personalised '    number    (in    the    range    of    1    
to    9)     for     the    user,     this    will    be    displayed    on the    screen. To    calculate     the    ' personalised '    number,    
several    values    will    be    used:
• An    initial    ' personalised '    number    value    of     5.
• A    family    name    factor    length    of    5.
• Special    letters    ‘A’,    'S', ‘T’    and'Z'.
The    user    will    always    see    one    ' personalised '    number.
NOTE:    Part    of    the    assessment    of    your    program    may    be    done    automatically,    so    it    is    important    that    you    
follow    the    specification    exactly,    for example    the    questions    must    be    asked    in    the    order    given    and    the    
method    the    user    is    given    to    indicate    that    they    want    to    see    another fortune    must    be    as    specified.
Details
• The     user     will     be     asked     to     enter     their     family     name. (Rules:     The entry     should     not     contain    
spaces.)
• The    user    will    be    asked    to    enter    the    first    letter    of    their    first    name.
• The    user    will    be    asked    to    enter    the    year    of    their    birth.
• The    user    will    be    asked    to    enter    true/false    as    to    whether    they    are    female.
• All    the    above    information    should    then    be    displayed    to    the    user    in    the    form    (with    sample    data    
of    "Clark",    "J",    1989,    true)    of:
J.Clark (male) was born in 1989.
• The    program    will    then    work    out    the    user's    'personalised '    number    as    follows:
o Starting    with    5 as    an    initial    number,    if    the    birth year is    even    then    the    number    will    be    
9    times (number=    initial    number*9).
if    the    birth    year    is    odd    then    the    number    will    be    multiple    of    3 times (number=    initial    
number*3).    
o If    the    user    is    female, then:
§ if    the    initial    of    their    first    name    is    either    of    the    special    letters [A,    S,    T    or    Z]
then    the    number    is    5 times (number=    initial    number*5);    otherwise, it    is    2
times    (number=    initial    number*2).
o otherwise,    for    a    male    user
§ if    the    length    of    the    family    name    is    a    multiple    of    3    then    the    number    is    6 times    
(number=    initial    number*6);    otherwise, it    is    4 times    (number=    initial    
number*4).
o Finally,    the    number    is    reduced    and    calculated    by    summing    the    digits    of    the    
calculated    number until    a    single-digit    number    is    obtained.    If    the    result    is 0,    it    is    set    
to 1 to    ensure    the    personalised number    remains    between 1    and    9.
• The    Personalised number    is    then    displayed    on    the    screen.
• After    the    Personalised number    has    been    displayed,    the    user    is    asked    whether    they    want    to    
see    another.    To    see    another    personalised number, they    must    enter    the    character    'y'    or    'Y'    (for    
yes).    They    will    then    be    asked    for    another    family    name,    initial,    year,    and    gender    and    will    see    
another    personalised number.    If    they    enter    any    letter    other    than    'y'    or    'Y'    the    program    will    
stop.
• The    user    will    be    shown    a    message    saying    how    many    personalised numbers    were    told.
A    sample    output    of    the    program    is    attached    to    the    end    of    this    document.
Program    Style
The    program    you    write    for    this    assignment    must    be    a    single    class    called    Asst2 with    the    code    in    a    file    
called    Asst2.java. There    should    be    a    single    method    (the    main()    method)    in    this    class.
Page 2 of 10
Your     program     should     follow     the     coding     conventions     introduced     in     this     unit and     shown     in     the    
textbook,    especially:
• Variable    identifiers    should    start    with    a    lower-case letter
• Final    variable    identifiers    should    be    written    all    in    upper    case    and    should    be    declared    before    
all    other    variables
• Every    if-else    statement    should    have    a    block    of    code    for    both    the    if    part    and    the    else    part    (if    
used)
• Every    loop    should    have    a    block    of    code (if    used)
• The    program    should    use    final    variables    as    much    as    possible
• The    keyword    continue should    not    be    used
• The    keyword    break should    only    be    used    as    part    of    a    switch    statement (if    required)
• Opening    and    closing    braces    of    a    block    should    be    aligned
• All    code    within    a    block    should    be    aligned    and    indented    1    tab    stop    (approximately    4    spaces)    
from    the    braces    marking    this    block
Commenting:
• There    should    be    a    block    of    header    comment    which    includes    at    least
o file    name
o your    name (in    pinyin)
o student    UTas    id    number
o a    statement    of the    purpose    of    the    program
• Each    variable    declaration    should    be    commented.
• There    should    be    a    comment    identifying groups    of    statements    that    do    various    parts    of    the    
task.
• There    should    not be    a    comment    stating    what    every    (or    nearly    every)    line    of    the    code    does    -
as    in:    
num1 = num1 + 1; // add 1 to num1
Save    the    Output    
Run    your    program    entering    data    via    the    keyboard    and    save    the    output    of    your    program    to    a    text    file    
using    your    UTas student    id    number    as    the    name    of    the    file,    for example,    159900.txt (in    jGrasp,    right    
mouse-click    in    the    ‘Run    I/O’    window    and    select    ‘Save    As    Text    File’).
Important    Notes:    
• Changing    a    few    variable    names,    adding    different    data    and    /    or    adding    your    name    to    the    top    
of    someone    else’s    code    does    not    make    it    your    own    work.    See    the    section    on    ‘Plagiarism’    below.
• You    need    to    submit    2 files:    
o your        Asst2.java
o a    text    file    containing    the    output    of    your    program    using    your    UTas    id number    as    the    
name    of    the    file,    for    example,    159900.txt.    
o See    the    section    on    ‘Submission’    below for    more    information.
• Before    you    submit    your    assignment    through    the    KXO151 MyLO    website,    it    is    suggested    that    
you    make    sure    the    final    version    of    your    Java    program    file    compiles    and    runs    as    expected    – do    
not    change    the    names of    the    java     file – submit    it exactly    as    you    last    compiled    and    ran    it.
Programs    that    do    not    compile    and    /    or    run    will    fail    the    assignment.    If    in    doubt,    you    can    
Page 3 of 10
Page 4 of 10
click    on    the    submitted    files,    download    them    from    MyLO,    and    check    that    they    are    the    files    you    
think    they    should    be.    
NOTE: The    higher    marks    are    reserved    for    solutions    that    are    highly    distinguished    from    the    rest    and    
show    an    understanding    and    ability    to    program    using    Java    that    is    well    above    the    average.
Page 5 of 10
Guide    to    Assessment    and    Expectations:
The    assessment    of    Assignment    2    is    based    on    the    following    criteria:
Criteria High    Distinction Distinction Credit Pass Fail
Programming    
Requirement
Excellent    
programming     ability    
to     correctly     prompt    
the     user     for     inputs    
and     store     them    
appropriately. The    
program     employs     a    
loop     structure     to    
repeatedly     prompt    
the     user     until     they    
choose     to     exit. The    
program     accurately    
assesses     and     provide    
the    information    as    per    
the     requirements. It    
accurately     calculates    
and    displays     the     total    
number    of     times    user    
asks     to     run     the    
program during     the    
session.
Reasonable    
programming     ability    
to     correctly     prompt    
the     user     for     inputs    
and     store     them    
appropriately. The    
program     employs     a    
loop     structure     to    
repeatedly     prompt    
the     user     until     they    
choose     to     exit. The    
program     reasonably
assesses     and     provide    
the    information    as    per    
the     requirements. It    
accurately     calculates    
and    displays     the     total    
number    of     times    user    
asks     to     run     the    
program during     the    
session.
Good     programming    
ability     to     correctly    
prompt     the     user     for    
inputs    and    store    them    
appropriately. The    
program     employs     a    
loop     structure     to    
repeatedly     prompt    
the     user     until     they    
choose     to     exit. The    
program assesses    and    
provide     the    
information    as    per    the    
requirements. It
calculates     and    
displays     the     total    
number    of     times    user    
asks     to     run     the    
program during     the    
session.
Some     user    inputs     are    
prompted     or     stored    
incorrectly. Loop    
structure     is     partially    
implemented     or    
contains    minor    issues.
The     program    
accurately     assesses    
some     of     the    
requirements     and    
provide     the    
information    as    per    the    
requirements. It    
partially calculates    
and    displays     the     total    
number    of     times    user    
asks     to     run     the    
program during     the    
session.
User     inputs     are     not    
prompted     or     stored    
correctly. Loop    
structure     is     not    
implemented     or     does    
not    function    properly.
The information    
assessment     is    
incorrect     or    
incomplete. Total    
number     of     program    
runs    is    not    calculated    
or    displayed.
General    
Requirement
Excellent     evaluation    
of     the     program's    
organization     and    
visual     presentation.
Assessment     of    
adherence     to     coding    
standards     such     as    
naming     conventions,    
use     of     constants,     and    
in-line     comments.
Check     if     the     program    
includes     the    
necessary    
information     in     its    
header.
Reasonable    
evaluation     of     the    
program's    
organization     and    
visual     presentation.
Assessment     of    
adherence     to     coding    
standards     such     as    
naming     conventions,    
use     of     constants,     and    
in-line     comments.
Check     if     the     program    
includes     the    
necessary    
information     in     its    
header.
Good     evaluation     of    
the     program's    
organization     and    
visual     presentation.
Assessment     of    
adherence     to     coding    
standards     such     as    
naming     conventions,    
use     of     constants,     and    
in-line     comments.
Check     if     the     program    
includes     the    
necessary    
information     in     its    
header.
Some     evaluation     of    
the     program's    
organization     and    
visual     presentation.
Assessment     of    
adherence     to     coding    
standards     such     as    
naming     conventions,    
use     of     constants,     and    
in-line     comments.
Check     if     the     program    
includes     the    
necessary    
information     in     its    
header.
No     evaluation     of     the    
program's    
organization     and    
visual     presentation.
Assessment     of    
adherence     to     coding    
standards     such     as    
naming     conventions,    
use     of     constants,     and    
in-line     comments.
Check     if     the     program    
includes     the    
necessary    
information     in     its    
header.
Note The    High    Distinction    grade    is    reserved     for    solutions     that     fully    meet     the    requirements    &    are    highly    distinguished     from    
other    assignments    by    their    high-quality    work    &    their    attention    to    detail    (usually    only    10%    of    students).
PLEASE    NOTE: The    assignment    will    receive    a    single    composite    mark.    The    assignment    will    be    accessed    
from    the    point    of    view    of    the    requirements:    “Does    it    meet    the    requirements,    and    how    well    does    it    do    
it?”         Where     there     is     some     inconsistency     in     that     the     work     does     not     completely     match     every     sub criterion within    a    particular    criterion,    then    the    grade    reflects    the    value    of    the    work    ‘on    average’.    
Submission:
Your     completed     solution (your     Asst2.java file,     plus     a     text     file containing     the     output     of     your    
program     using     your     UTas     id     number     as     the     name     of     the     file,     for     example,     159900.txt)     must     be    
submitted    by    the    deadline.    Assignments    must    be    submitted    electronically    via    KXO151 MyLO    website
as    files    that    can    be    read    by    a    text    editor    such    as    Microsoft    Notepad    (submit    the    *.java    file    - not    the    
*.class    file).    Follow    the    following    steps    to    create    a    package    for    your    assignment    files    and    then    submit    
your    package    file:
1.        On    your    computer    desktop,    create    a    new    folder    using    your    name    and    UTAS    ID    number.    
For    example,    if    you    name    is    Jianwen    Chen    and    your    UTAS    ID    number    is    159900,    then    the    
new    folder    must    be    named    Jianwen_Chen_159900;
2.    Copy    your    2    assignment    files    into    the    new    folder;
Page 6 of 10
3.    Use    the    WinRAR    application    to    compress    the    new    folder    and    name    it    as    *.rar.    For    
example,    Jianwen    Chen    would    name    it    as    Jianwen_Chen_159900.rar.
4.    Submit    your    *.rar    file    to    the    unit    MyLO    “Assessments/Assignments/Assignment    2”    folder.
5.    If    WinRAR    application    is    not    available    on    your    computer,    try    to    use    a    similar    application    
to    compress    the    new    folder    and    name    it    as    *.zip,    and    then    submit    the    *.zip    file.
Details    of    the    actual    submission    procedure    are    available    through    the    MyLO    webpages.    
Students     who     believe     that     this     method     of     submission     is     unsuitable     given     their     personal    
circumstances    must    make    alternative    arrangements    with    their    Lecturer    prior    to    the    submission    date.    
Extensions    will     only     be     granted     under     exceptional    conditions     and must     be     requested    with    
adequate    notice    on    the    Request    for    Extension    forms. No    extension    will    be    provided    after    due    
date.
In    submitting    your    assignment, you    are    agreeing    that    you    have    read    the    ‘Plagiarism’    section    below,    
and    that    your    assignment    submission    complies    with    the    assignment    requirement    that    it    is    your    own    
work.
Plagiarism
While    students    are    encouraged    to    discuss    the    assignments    in    this    unit    and    to    engage    in    active    learning    
from    each    other,    it    is    important     that     they    are    also    aware    of     the    University’s    policy    on    plagiarism.    
Plagiarism     is     taking     and     using     someone     else's     thoughts,     writings     or     inventions     and     representing    
them    as    your    own;    for    example, downloading    an    essay    wholly    or    in    part    from    the    internet,    copying    
another    student’s    work    or    using    an    author’s    words    or    ideas    without    citing    the    source.
Plagiarism    is    a    form    of    cheating.    It    is    taking    and    using    someone    else's    thoughts,    
writings    or    inventions    and    representing    them    as    your    own;    for    example,    using    an    
author's    words    without    putting    them    in    quotation    marks    and    citing    the    source,    using    
an    author's    ideas    without    proper    acknowledgment    and    citation    or    copying    another    
student’s    work.    
If    you    have    any    doubts    about    how    to    refer    to    the work of others in your assignments,
please    consult    your    lecturer    or tutor    for    relevant    referencing    guidelines,    and    the    
academic    integrity    resources on the web at:    www.academicintegrity.utas.edu.au/.
The intentional copying of someone else’s work as one’s own is a serious offence
punishable    by    penalties that    may    range    from    a    fine    or    deduction/cancellation of    marks
and, in the most    serious of cases, to exclusion from a unit, a course    or the    University.    
Details    of    penalties    that    can be imposed are available in the Ordinance of Student
Discipline – Part 3 Academic    Misconduct,    see:    
www.utas.edu.au/universitycouncil/legislation/
The University reserves the right to    submit assignments to plagiarism    detection    
software,    and    might    then retain    a    copy    of    the    assignment    on    its    database    for    the    
purpose    of future plagiarism checking.
It    is    important     that    you    understand     this    statement    on    plagiarism.    Should    you    require    clarification    
please    see    your    unit    coordinator    or    lecturer.        Useful    resources    on    academic    integrity,    including    what    
it    is    and    how    to    maintain    it,    are    also    available    at:    www.academicintegrity.utas.edu.au/.
Working    with    others,    including    generative    Generative    AI    tools (e.g.,    ChatGPT,    Codex,    Copilot)
One    effective    way    to    grasp    principles    and    concepts    is    to    discuss    the    issues    with    your    peers    or    friends    
(or    even    to    interact    with    one    of    the    many    generative    AI    tools    available    now),    and    you    are    encouraged    
to    do    this.    We    also    encourage    you    to    discuss    aspects of    practical    assignments    with    others.    However,    
once    you    have    clarified    the    principles of    the    question,    you    must    express    the    expression,    algorithm    or    
program    entirely    by    yourself.    In    other    words,    you    can    discuss    the    question,    but    not    the    solution.    Same    
applies    to    advanced    Generative    AI    tools,    we    do    not    encourage    students    solve    the    assignment    using    
advance     AI     tools,     however,     if     you     would     like     to     take     assistance     from     these     AI     tools     to     help     to    
understand    the    question,    then    you    need    to    provide    below    detail:
If    you    get    help    from    an    AI    tool    with    a    programming    task,    add    this    at    the    top    of    your    source    file    
or    embed    the    contents    (excluding    the    top    and    bottom """)    into    the    program-level """    documentation    
comment    """ at    the    top:
"""
Acknowledgement of external assistance
Issues I got help with: WRITE 1-3 SHORT SENTENCES
Assistance received: WRITE 1-3 SHORT SENTENCES
Page 7 of 10
Page 8 of 10
What I learned: WRITE 1-3 SHORT SENTENCES
"""
After    the    appropriate    prompt    write    a    brief    summary    of:
• what    the    problem(s)    were    that    you    needed    help    with;
• what    assistance    the    external    tool    provided    (for    example,    did    it    identify    a    problem    in    syntax,    
or    an    issue    with    the    approach    you    were    using?)
• what    you    have    learned    from    its    suggestion(s)    (which    will    allow    you    to    solve    such    problems    
yourself    in    future)
If     you     get    help     from     an    AI     tool    with     a     task    where     you    produce     a     document,    either     upload    a    
separate    Word    or    PDF    containing    the    same    details    as    above    or,    within    the    body    of    the    document,    add    
the    following    with    responses    after    each    of    the    three    prompts:
Acknowledgement    of    external    assistance
Issues    I    got    help    with: WRITE    1-3    SHORT    SENTENCES
Assistance    received: WRITE    1-3    SHORT    SENTENCES
What    I    learned: WRITE    1-3    SHORT    SENTENCES
Acknowledgement
This    assignment    has    been    adapted    from    a    programming    project    developed    by    Dr    Julian    Dermoudy.    The assignment    template    
was    written    by    Dr    Dean    Steer.
Page 9 of 10
Sample    Output    of    Assignment    2,    2025
C:\KXO151>java Asst2
Welcome to personalised number generator. 
This program will tell you your personalised number using your 
personal information!
Please enter your family name: Chen
Please enter your first initial: Z
Please enter the year in which you were born: 2002
True or false – you are female: false
Z.Chen (male) was born in 2002.
And has a personalised number of 2
Another? n
Thank you for using Personalised number generator, you have generated 
1 personalised number(s).
C:\KXO151>
Page 10 of 10
KXO151 Assignment Two Marking Scheme (2025)
Programming Requirements (for each item there are only 3 possible marks: 100% or 50% or 0%)
Requirement Item Mark 
Out of
PR1. Correctly obtain inputs from user 2
PR2. Correctly display a message such as “J.Clark (male) was born in 1989.” 1
PR3. Correctly calculate and display a user’s personalised number 4
PR4. Correctly set up a loop to allow a user to play the game again 2
PR5. Correctly calculate and display the total personalised numbers given when a 
user chooses to exit.
1
General Requirements (for each item there are only 3 possible marks: 100% or 50% or 0%)
General Item Mark
GN1. Program structure and layout
Clear and tidy (2). Somewhat messy but understandable (1). Messy (0.5)
2
GN2. Include name, ID, and brief introduction in the program’s header 2
GN3. Appropriate in-line comments 1
Assignment Raw Total: /15
Lateness Penalty: 
Assignment Final: /15
UTAS lateness penalty policy:
“Assignments submitted after the deadline will receive a late penalty of 5% of the original available mark 
for each calendar day (or part day) that the assignment is late. Late submissions will not be accepted more 
than 10 calendar days after the due date, or after assignments have been returned to other students on a 
scheduled date, whichever occurs first.”

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:代寫COMP9021、代做Python程序設(shè)計(jì)
  • 下一篇:代寫指標(biāo)代寫通達(dá)信公式指標(biāo)牛熊系數(shù)PRO
  • 無相關(guān)信息
    合肥生活資訊

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

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    美女福利视频一区| 日韩欧美在线电影| 久久免费一级片| 2019日韩中文字幕mv| www国产黄色| 91精品国产91久久久久麻豆 主演 91精品国产91久久久久青草 | 亚洲五码在线观看视频| 中文字幕不卡每日更新1区2区| 116极品美女午夜一级| 99久久国产宗和精品1上映| 欧美牲交a欧美牲交aⅴ免费真| 精品中文字幕在线2019| 久热精品视频在线观看一区| 久久五月情影视| 欧美激情视频网址| 亚洲va久久久噜噜噜久久天堂| 国产精品久久久久一区二区| 国产精品国色综合久久| 欧美人成在线视频| 亚州av一区二区| 操91在线视频| 久久久久国色av免费观看性色| 国产精品十八以下禁看| 久久成人免费视频| 俺去亚洲欧洲欧美日韩| 国产精品久久久久久久久久久久久久| 国产成人精品视频| 国产精品免费网站| 色综合久久88色综合天天看泰| 精品国内自产拍在线观看| 国产精品久久久久久av| 一区二区三区一级片| 国产精品色悠悠| 91传媒免费视频| 国产999在线观看| 国产精品女人网站| 国产精品免费在线免费| 热99精品只有里视频精品| 国产午夜福利在线播放| 欧美亚洲国产成人| 国产成人精品免费视频大全最热| 一区二区三区免费看| 日本国产一区二区三区| 91精品久久久久久蜜桃| 国产成人一区二区在线| 亚洲丰满在线| 日韩亚洲综合在线| 黄色国产一级视频| 国产经品一区二区| 欧美在线一区二区视频| 精品国模在线视频| 久久精彩视频| 久久久精品免费视频| 欧美精品亚州精品| 国产精品毛片一区视频| 国内精久久久久久久久久人| 一区二区精品免费视频| 久久伊人精品天天| 欧美专区日韩视频| 欧美激情视频在线观看| 欧美性久久久久| 国产精品久久久999| 99久热re在线精品视频| 国产精品1区2区在线观看| 国产激情久久久久| 蜜臀久久99精品久久久无需会员| 久久天堂国产精品| 国产精品成人在线| 日韩欧美亚洲区| 91精品视频专区| 免费av在线一区| 欧美精品国产精品久久久| 日本成人黄色| 亚洲图片欧洲图片日韩av| 欧美中文字幕在线观看| 久久影视中文粉嫩av| 中文字幕久精品免| 欧美激情小视频| 久久国产精品久久久久| 久久久久久久国产| 亚洲免费在线精品一区| 激情视频综合网| 日韩一区二区精品视频| 日本一区免费看| 国产精品18久久久久久麻辣 | 久久香蕉综合色| 免费97视频在线精品国自产拍| 国产精品国产三级国产aⅴ浪潮| 久久91亚洲精品中文字幕奶水| 亚洲午夜久久久影院伊人 | 国产精品自拍首页| 欧美成在线视频| 国产日韩三区| 久久亚洲一区二区三区四区五区高 | 在线一区高清| 国产日本欧美视频| 精品免费日产一区一区三区免费| 精品国产乱码久久久久软件| 亚洲精品一区国产精品| 99热一区二区三区| 亚洲黄色成人久久久| 国产精品999视频| 亚洲va韩国va欧美va精四季| 日韩亚洲不卡在线| 国产v亚洲v天堂无码| 欧洲视频一区二区三区| 国产精品欧美一区二区| 精品一区二区日本| 国内视频一区二区| 久久伊人精品视频| av日韩一区二区三区| 亚洲欧美国产一区二区| 91久久久久久久久久久久久| 色婷婷久久一区二区| 欧美亚洲视频在线观看| 国产精品推荐精品| 狠狠噜天天噜日日噜| 欧美激情精品久久久久久变态| 日本亚洲欧美成人| 久久久久久亚洲精品不卡| 欧美一区亚洲一区| 国产精品久久久久7777| 午夜精品理论片| 国产精彩视频一区二区| 欧美日韩无遮挡| 欧美成人免费一级人片100| 99视频精品免费| 国产精品国产精品国产专区蜜臀ah| 亚洲综合国产精品| 国产精品99久久久久久www| 欧美性一区二区三区| 欧美精品www| 国产成人在线播放| 亚洲精品久久区二区三区蜜桃臀| 精品欧美日韩在线| 久久国产天堂福利天堂| 国产高清在线不卡| 国产中文一区二区| 亚洲精品免费av| 国产精品乱码一区二区三区| 99一区二区三区| 欧美亚州在线观看| 亚洲一区二区在| 久久精品视频免费播放| 波多野结衣综合网| 免费在线黄网站| 亚洲欧美日韩另类精品一区二区三区| 蜜臀av.com| 国产精国产精品| 亚洲一区二区久久久久久| 色琪琪综合男人的天堂aⅴ视频| 日本一区免费| 久99九色视频在线观看| 久久久伊人欧美| 国产又爽又黄的激情精品视频| 久久精品免费播放| 97精品国产97久久久久久| 欧美精品七区| 日本一区二区三区四区五区六区| 国产精品亚洲视频在线观看| 国产精品美女久久久免费| 91av免费观看91av精品在线| 国产自产在线视频| 人妻熟女一二三区夜夜爱| 亚洲国产精品久久久久久女王| 成人av免费电影| 精品嫩模一区二区三区| 日韩免费av在线| 中文字幕日韩精品无码内射| 国产精品美女www爽爽爽视频| 国模无码视频一区二区三区| 国产精品高潮呻吟久久av无限| 国精产品99永久一区一区| 日韩免费视频播放| 少妇人妻互换不带套| 伊人婷婷久久| 欧美精品在线观看| 国产精品国三级国产av| 国产精品三区四区| 精品国产一区二区三区四区在线观看| 青草青草久热精品视频在线网站| 日韩在线小视频| 97成人精品视频在线观看| 国产欧美一区二区白浆黑人 | 视频在线一区二区三区| 欧美激情欧美激情在线五月| 久久97久久97精品免视看| 久久亚洲国产成人| 九九精品在线播放| 色综合视频一区中文字幕| 久久久久久国产| 久久理论片午夜琪琪电影网| 91精品国产亚洲| 99在线免费观看视频| 91精品国产综合久久香蕉最新版| 日韩久久不卡| 秋霞在线观看一区二区三区| 热久久99这里有精品| 欧美精品一区在线| 免费在线观看亚洲视频|