首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴王宇577的代码贴Python
!DOCTYPE html>
<head>
    <title></title>
    <link rel="stylesheet" href="css/index.css">
</head>
<body>
    <div class="home">
        <div class="content">
            <div class="stars"></div>
            <img class="bgc" src="https://img.lccyj.ltd/img/tongnian.JPG" width="100%" alt="">
            <h3 class="title">欢迎来到我222333的个人网站</h3>
            <h3 class="titles">我时常回到童年,用一片童心思考问题,很多烦恼的问题就变得易解。</h3>
......................
阅读全部 | 2022年5月31日 18:50
#include <stdio.h>

int main()
{
    int price=0;
    
    printf("请输入金额(元)");
    scanf("%d",&price);
    
    int change=100-price;
    
    printf("找您%d元\n",change);
......................
阅读全部 | 2022年5月24日 16:32
1
王宇577