首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴jamila的代码贴C语言
#include <stdio.h>

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