K
Khách

Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.

24 tháng 4 2020

TAT_Shiro bn mà bik mấy tiếng trên thì chỉ mik với (mong đc bn chỉ giáo)

Justin Le Nguyen Mk cx ko biết, python jj đó ý.

13 tháng 7 2021
Code:#include <stdio.h> struct phanso {int tu;int mau;}; int ucln(int a, int b) {while(a!=b){if(a>b)a=a-b;elseb=b-a;}return a;} struct phanso tg(struct phanso a) {int c = ucln(a.tu, a.mau);a.tu /= c;a.mau /= c;return a;} struct phanso tong(struct phanso a, struct phanso b) {struct phanso s;s.tu = (a.tu * b.mau) + (b.tu * a.mau);s.mau = a.mau * b.mau;return s;} main() {struct phanso ps[100];struct phanso s;int n, x = 0, maxnum;double gtps[100], max;unsigned int i;printf("Nhap n: "); scanf("%d", &n);for (i = 0; i < n; i++) {printf("Nhap tu so cua phan so so %d: ", i + 1); scanf("%d", &ps[i].tu);printf("Nhap mau so cua phan so so %d: ", i + 1); scanf("%d", &ps[i].mau);}s = ps[0];for (i = 1; i < n; i++) {s = tong(s, ps[i]);}printf("\n");printf("a) Tong: %d/%d\n", tg(s).tu, tg(s).mau);for (i = 0; i < n; i++) {if (ps[i].mau != tg(ps[i]).mau) {x += 1;}}printf("b) So phan so chua toi gian: %d\n", x);for (i = 0; i < n; i++) {gtps[i] = (double)ps[i].tu / (double)ps[i].mau;}max = gtps[0];for (i = 1; i < n; i++) {if (max < gtps[i]) {maxnum = i;max = gtps[i];}}printf("c) Phan so co gia tri lon nhat la: %d/%d", ps[maxnum].tu, ps[maxnum].mau);return 0;} Ảnh:
21 tháng 4 2020

:? LÀ sao vậy :? Cái này đâu có nặng đâu :?

21 tháng 4 2020

Kido Toshiro 1GB?

#include <iostream>

using namespace std;

int main()

{   

int i,j,t,a;   

for (i=1000;i<=9999;i++)       

if (i%19==0)   

{       

t=0;       

j=i;       

while (j>0)       

{           

a=j%10;           

t=t+a;           

j=j/10;       

}       

if (t==19) cout<<i<<" ";   

}   

return 0;

}

 

#include <iostream>using namespace std;int main(){    int i,j,t,a;    for (i=1000;i<=9999;i++)        if (i%19==0)    {        t=0;        j=i;        while (j>0)        {            a=j%10;            t=t+a;            j=j/10;        }        if (t==19) cout<<i<<" ";    }    return 0;}

 

D
datcoder
CTVVIP
26 tháng 3

#include <stdio.h>

int main(){

    int n;

    scanf("%d",&n);

    long t=0; int i,j;

    for (i=2; i<=n; i++){

        int c=0;

        for (j=2; j<i; j++)

            if (i%j==0) c++;

        if (c==0) t=t+i;

        }

printf("%d",t);

return 0;

}

D
datcoder
CTVVIP
9 tháng 1

Bạn trình bày lại đề bài rõ hơn nha, đề đọc rất khó hiểu ấy.

5 tháng 12 2017

ĐÁP ÁN A