You are on page 1of 1

#include <stdio.h> #include <stdlib.

h> main()

{ //clue int A,B,C;

back: printf (" masukan data A " ); scanf (" %d", &A); printf ("masukan data B " ); scanf ("%d", &B); C=A+B; printf ("hasil %d\n", C); goto back;

system("pause"); }

You might also like