用C语言编写!谢谢!!

[复制链接]
查看11 | 回复2 | 2012-4-22 20:02:18 | 显示全部楼层 |阅读模式
1.编写一个函数,计算两个整数a,b的乘积#include "stdio.h"#include "stdlib.h"int multi(int a,int b){
int c;
c=a*b;
return c;}void main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d",multi(a,b));}2.编写一个函数,计算两个整数a,b的和#include "stdio.h"#include "stdlib.h"int add(int a,int b){
int c;
c=...
回复

使用道具 举报

千问 | 2012-4-22 20:02:18 | 显示全部楼层
1.编写一个函数,计算两个整数a,b的乘积。int multi(int a,int b){return (a*b);}2.编写一个函数,计算两个整数a,b的和int add(int a ,int b){return (a+b);}3.编写一个函数,计算ax2+bx+c=0(a不为0)的根。#include void main(){int a,b,c;scanf("%d,%d",&a,&b);c=int multi(a,b);}int multi(int a,int b){return (a*b);}...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行