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
Respostas
respondido por:
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 similares
3 anos atrás
3 anos atrás
5 anos atrás
5 anos atrás
7 anos atrás