问题标题: 酷町堂:1829 帮帮白雪公主(0分)

0
0
已解决
王光裕
王光裕
资深光能
资深光能
#include<bits/stdc++.h>  
using namespace std;
int main ()
{
    int a,b;
    cin>>a;
    b=a%7;
    cout<<(100-b)/7<<endl;
    cout<<b;
    return 0;
}                      

0
已采纳
芮奥运
芮奥运
高级光能
高级光能
long long a;
    cin >>a;
    cout<<a/7<<endl<<a%7;
0
梁俊杰
梁俊杰
中级守护
中级守护
 int a,b;
    cin>>a;
    cout<<a/7;
    cout<<endl;
    cout<<a%7;
0
欧阳语聪
欧阳语聪
资深守护
资深守护
m=a/b;
    n=a%b;
    cout<<m<<endl;
    cout<<n;
0
许维昊
许维昊
高级守护
高级守护
#include <iostream>
using namespace std;
int main()
{
    int a,b;
    cin>>a;
    cout<<a/7;
    cout<<endl;
    cout<<a%7;
    return 0;
} 

 

0
邵逸儒
邵逸儒
中级天翼
中级天翼
    定义 n;
    输入n;
    输出n/7<<endl;
    输出n%7;

0
0
杨子逸
杨子逸
新手天翼
新手天翼

定义 i=0,s=0,y;
    cin>>y;
    i=y/7;
    s=y%7;
    输出<<i<<" "<<s;

杨子逸在2018-03-11 08:57:57追加了内容

不好意思,

定义 i=0,s=0,y;
    cin>>y;
    i=y/7;
    s=y%7;
    输出<<i<<endl<<s;

0
李源徽
李源徽
新手光能
新手光能
 cin>>a;
    cout<<a/7<<endl<<a%7

核心代码。

我要回答