Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~2K People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for burcinerek

public class secenek { public static void main(String[] args) { int option=0; int a,b; a=5; b=7; if (option==0){ System.out.println("A+B= "+a+b); } } }

Member Avatar for sepp2k
0
163
Member Avatar for Şerif Burçin
Member Avatar for burcinerek

problem: five students pick five balls, but they must not choose the same ball this program does not work i dont know what is wrong. [CODE]#include <cstdlib> #include <iostream> #include <stdio.h> #include <conio.h> using namespace std; int main(int argc, char *argv[]) { int i; int student[5] = {0}; int ball[6] …

Member Avatar for vijayan121
0
309
Member Avatar for burcinerek

I write letter, it checks vowel or not but could not achieve for the capital letter without using if loop help me [CODE]#include <cstdlib> #include <iostream> #include "stdio.h" #include "conio.h" #include "string.h" using namespace std; int main(int argc, char *argv[]) { int a,b; char ch; printf("Enter Letter="); scanf("%c",&ch); if (ch==a) …

Member Avatar for rubberman
0
110
Member Avatar for Dakot

[CODE] #include <cstdlib> #include <iostream> #include <numeric> #include <stdio.h> using namespace std; int char_add(int sum, char character) { return sum + (character - '0'); } int main() { cout << "enter number: "; string num; cin >> num; cout << "Total: " << accumulate(num.begin(), num.end(), 0, char_add) << '\n'; system("PAUSE"); …

Member Avatar for burcinerek
0
172

The End.