Hi,
In installed (2.0.3v) on Confluence (5.8.16v) and I'm able to create a workflow in my page (see screenshot) but when I save, the page is blank (even blank in preview mode). What am I missing?
Thanks in advance.
#include <stdio.h>
int main ()
{
int data[15]
int a, b
int max, min;
printf("Masukkan banyaknya bilangan (Maksimum 15): ");
scanf("%d", &a);
for(b = 1 b <= a b++;){
printf("Input bilangan ke-%d: ", b);
scanf("%d", &data[b]);
}
max = data[1];
min = data[1];
for(b = 1; b <= a; b++){
if(data[b] >= max){
max = data[b];
}
if(data[b] <= min){
min = data[b];
}
}
printf("\nNilai Max: %d", max);
printf("\nNilai Min: %d", min);
return 0;
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.