“Better to have loved and lost, than to have never loved at all.”
더 좋다 사랑했고 잃어버린 것보다, 사랑이 없습니다.
UTUT MU!
Bakit ko ipapaalam sa’yo ang lakas ko?
Para alam mo kung saan ako dapat paghandaan?
At lalaong bakit ko aaminin sa’yo ang kahinaan ko?
Para alam mo kung paano mo ako matatalo?
UTUT MU!
Hindi matatawag na “BARKADA” ang isang samahan kapag wala ang isang miyembro nito na magaling magpatawa
Via I can't stand to flyache cheeee!!!!
Friends are not the one who laughs when you laugh
And cries when you cry.
They are the ones who make you laugh
And stop you from crying.
Quiz sir
import java.util.*;
public class test{
public static void main(String[] args){
Scanner me = new Scanner(System.in);
int aw = 1000;
int[] num;
num = new int[aw];
int sum1=0,sum=0,odd=0,even=0;
System.out.print(“Enter a number : “);
aw = me.nextInt();
for(int z=0;z < aw;z++)
{
System.out.printf(“Enter a number %d:”,z+1);
num[z] = me.nextInt();
}
for(int z=0;z <aw;z++)
{
if(num[z]%2==0)
{
even +=1;
sum +=num[z];
}
}
for(int z=0;z <aw;z++)
{
if(num[z]%2==1)
{
odd +=1;
sum1 +=num[z];
}
}
System.out.printf(“sum of even:%d”,sum);
System.out.printf(“\nsum of odd :%d”,sum1);
System.out.printf(“\nnumber of odd %d”,odd);
System.out.printf(“\nnumber of even %d”,even);
}
}




