第一题题目:学校新买来m根跳绳,每个班分n根,最多可以分给几个班的同学,还剩多少根?(m>=n)(4.1.9)
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<a/b<<" "<<a%b;
return 0;
}
第二题:题目题目描述 从键盘读入2个整数,分别代表一个长方形的长和宽,请计算长方形的周长和面积
#include<bits/stdc++.h>
using namespace std;
int a,b;
int main(){
cin>>a>>b;
cout<<(a+b)*2<<endl<<a*b;
return 0;
}
第三题;题目假设小明的妈妈向公司请了n天的假,那么请问小明的妈妈总共请了多少小时的假,多少分钟的假?(提示:1天有24小时,1小时有60分钟)
#include <stdio.h>
int main(){
int n,s,min;
scanf("%d",&n);
s=n*24;
min=24*60*n;
printf("%d\n%d",s,min);
return 0;
}<