1.能不能给我发个用c语言课程设计餐馆小系统的收收源代码
2.求大神帮我写下这个C语言程序 把源代码回复给我 谢谢了!
3.用C语言开发简单的银源源码netmes系统源码应用系统程序,源代码不得少于150行
能不能给我发个用c语言课程设计餐馆小系统的系统scratch源码下载源代码
可以通过Baidu Hi通知我们你的任务
有机会可完成你遇到的任务
如果你有相关的要求也可通知我们
ES:\\F0DAC9D5B2FEBCBED6A2
交易提醒:预付定金是诈骗
交易提醒:勿轻信用户名中的
****求大神帮我写下这个C语言程序 把源代码回复给我 谢谢了!
/* determine the amount of the change
change = (paid - check) * ;
determine the number of dollars in the change
dollars = change / ;
…
(1). Using the previous statements as a starting point,收收国外 问答 源码 write a C program
that calculates the number of dollar bills( cents), quarters coins(
cents), dimes coins ( cents), nickels coins (5 cents), and pennies coins (1
cents) in the change when $ is used to pay a bill of $6..
(2) Using the C program to calculate the change when a check of $.
is paid using a $ bill.
*/
#include "stdio.h"
void getChange(int paid, float bill)
{
if (paid < bill)
{
printf("Your money cant paid for the bill!\n");
return;
}
else
{
int remain;
int dollor = 0,quarter = 0,dime = 0,nickel = 0,penny = 0;
remain = (paid* - bill*)+0.5;
dollor = remain/;
printf("Change Dollors: %d\n",dollor);
remain -= dollor*;
quarter = remain/;
printf("Change Quarters: %d\n",quarter);
remain -= quarter*;
dime = remain/;
printf("Change Dimes: %d\n",dime);
remain -= dime*;
nickel = remain/5;
printf("Change Nickels: %d\n",nickel);
remain -=nickel*5;
penny = remain;
printf("Change Pennys: %d\n",penny);
printf("Change finished!\n");
}
}
void main()
{
int paid;
float bill;
printf("Please input your Paid($):");
scanf("%d",&paid);
printf("Please input your Bill($):");
scanf("%f",&bill);
printf("Your change is: \n");
getChange(paid, bill);
}
用C语言开发简单的应用系统程序,源代码不得少于行
火车站售票查询系统:
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int shoudsave=0 ;
int count1=0,银源源码闹钟定时源码count2=0,mark=0,mark1=0 ;
/*定义存储火车信息的结构体*/
struct train
{
char num[];/*列车号*/
char city[];/*目的城市*/
char takeoffTime[];/*发车时间*/
char receiveTime[];/*到达时间*/
int price;/*票价*/
int bookNum ;/*票数*/
};
/*订票人的信息*/
struct man
{
char num[];/*ID*/
char name[];/*姓名*/
int bookNum ;/*需求的票数*/
};
/*定义火车信息链表的结点结构*/
typedef struct node
{
struct train data ;
struct node * next ;
}Node,*Link ;
/*定义订票人链表的结点结构*/
typedef struct people
{
struct man data ;
struct people*next ;
}bookMan,*bookManLink ;
/* 初始界面*/
void printInterface()
{
puts("