Informática, perguntado por kenryuiki, 3 meses atrás

Wap to print the number 100 200 300 400 500 600 700 800 900 and also print the sum of the number at the end

Soluções para a tarefa

Respondido por Aaronssaur
0

Resposta:

Linguage : C

#include<stdio.h>

#include<stdlib.h>

int main( void )

{

int x, z, y;

printf("X = ");

scanf("%d", &x);

printf("Z = ");

scanf("%d", &z);

y=x+z;

printf("X + Z = %d", y);

return 0;

}

Perguntas interessantes