Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Bangla Cyber Q&A প্রশ্ন করা এবং উত্তর প্রদানের একটি নির্ভরযোগ্য মাধ্যম। এখানে আপনার সমস্যা সমাধানের জন্য বা কোনো কিছু সম্পর্কে জানতে প্রশ্ন করতে পারবেন এবং অন্যের প্রশ্নের উত্তর দিয়ে মূল্যবান অবদান রাখতে পারবেন। প্রশ্ন করতে বা উত্তর দিতে হলে এখনই নতুন অ্যাকাউন্ট খুলুন।
somewhereinblog বন্ধ কেন?
জাতীয় স্বার্থ’ পরিপন্থী কর্মকাণ্ডের জন্য বাংলা ভাষার প্রথম কমিউনিটি ব্লগ সামহোয়ারইন ব্লগ বন্ধ করে দিয়েছে সরকার। অশ্লীলতা ও জুয়ার বিরুদ্ধে চলমান অভিযানের মধ্যেই ব্লগটি বন্ধ করে তারা।
জাতীয় স্বার্থ’ পরিপন্থী কর্মকাণ্ডের জন্য বাংলা ভাষার প্রথম কমিউনিটি ব্লগ সামহোয়ারইন ব্লগ বন্ধ করে দিয়েছে সরকার। অশ্লীলতা ও জুয়ার বিরুদ্ধে চলমান অভিযানের মধ্যেই ব্লগটি বন্ধ করে তারা।
See lessWhat are the 17 SDG (Sustainable Development Goals)?
The 17 sustainable development goals (SDGs) to transform our world: GOAL 1: No Poverty GOAL 2: Zero Hunger GOAL 3: Good Health and Well-being GOAL 4: Quality Education GOAL 5: Gender Equality GOAL 6: Clean Water and Sanitation GOAL 7: Affordable and Clean Energy GOAL 8: Decent Work and Economic GrowRead more
The 17 sustainable development goals (SDGs) to transform our world:
GOAL 1: No Poverty
GOAL 2: Zero Hunger
GOAL 3: Good Health and Well-being
GOAL 4: Quality Education
GOAL 5: Gender Equality
GOAL 6: Clean Water and Sanitation
GOAL 7: Affordable and Clean Energy
GOAL 8: Decent Work and Economic Growth
GOAL 9: Industry, Innovation and Infrastructure
GOAL 10: Reduced Inequality
GOAL 11: Sustainable Cities and Communities
GOAL 12: Responsible Consumption and Production
GOAL 13: Climate Action
GOAL 14: Life Below Water
GOAL 15: Life on Land
GOAL 16: Peace and Justice Strong Institutions
GOAL 17: Partnerships to achieve the Goal
See lessকি ভাবে আউটসোর্সিং করব?
আপনি ফাইভারে একাউন্ট খুলে কাজ করতে পারেন। ওখানে গ্রাফিক্স ডিজাইনের অনেক কাজ পাওয়া যায়। ফাইবারের সব নিয়ম কানুন সম্পর্কে জনতে বাংলা সাইবারের এই আর্টিকেলটি পড়তে পারেন। https://www.banglacyber.com/%E0%A6%AB%E0%A6%BE%E0%A6%87%E0%A6%AD%E0%A6%BE%E0%A6%B0%E0%A7%87%E0%A6%B0-%E0%A6%95%E0%A6%BF%E0%A6%9B%E0%A7%Read more
আপনি ফাইভারে একাউন্ট খুলে কাজ করতে পারেন। ওখানে গ্রাফিক্স ডিজাইনের অনেক কাজ পাওয়া যায়। ফাইবারের সব নিয়ম কানুন সম্পর্কে জনতে বাংলা সাইবারের এই আর্টিকেলটি পড়তে পারেন।
See lesshttps://www.banglacyber.com/%E0%A6%AB%E0%A6%BE%E0%A6%87%E0%A6%AD%E0%A6%BE%E0%A6%B0%E0%A7%87%E0%A6%B0-%E0%A6%95%E0%A6%BF%E0%A6%9B%E0%A7%81-%E0%A6%AC%E0%A7%87%E0%A6%B8%E0%A6%BF%E0%A6%95-%E0%A6%A8%E0%A6%BF%E0%A7%9F%E0%A6%AE/
URI Online Judge : 1002 Area of a Circle (Beginner Problem) in C language
#include int main() { double R,A; scanf("%lf", &R); A = 3.14159 * R * R; printf("A=%.4lfn", A); return 0; }
See less#include
int main()
{
double R,A;
scanf("%lf", &R);
A = 3.14159 * R * R;
printf("A=%.4lfn", A);
return 0;
}
URI Online Judge : 1003 Simple Sum (Beginner Problem) need Solution in C language
#include int main(){ int A, B; scanf("%d%d", &A, &B); printf("SOMA = %d\n", A+B); return 0; }
#include
See lessint main(){
int A, B;
scanf(“%d%d”, &A, &B);
printf(“SOMA = %d\n”, A+B);
return 0;
}
URI Online Judge : 1004 Simple Product (Beginner Problem) need Solution in C language
#include int main() { int A, B, PROD; scanf("%d%d", &A, &B); PROD = A*B; printf("PROD = %d\n", PROD); return 0; }
#include
See lessint main()
{
int A, B, PROD;
scanf(“%d%d”, &A, &B);
PROD = A*B;
printf(“PROD = %d\n”, PROD);
return 0;
}
URI Online Judge : 1005 Average 1 (Beginner Problem) need Solution in C language
#include int main(){ float A,B,med; scanf("%f %f",&A,&B); med=((A*3.5)+(B*7.5))/(3.5+7.5); printf("MEDIA = %.5f\n",med); return 0; }
#include
int main(){
float A,B,med;
scanf(“%f %f”,&A,&B);
med=((A*3.5)+(B*7.5))/(3.5+7.5);
printf(“MEDIA = %.5f\n”,med);
return 0;
}
See lessURI Online Judge : 1006 Average 2 (Beginner Problem) need Solution in C language
#include int main() { double a, b, c, media; scanf("%lf%lf%lf", &a, &b, &c); media = (a/10 * 2) + (b/10 * 3) + (c/10 * 5); printf("MEDIA = %.1lf\n", media); return 0; }
#include
See lessint main()
{
double a, b, c, media;
scanf(“%lf%lf%lf”, &a, &b, &c);
media = (a/10 * 2) + (b/10 * 3) + (c/10 * 5);
printf(“MEDIA = %.1lf\n”, media);
return 0;
}
URI Online Judge : 1007 Difference (Beginner Problem) need Solution in C language
#include int main() { int A , B , C , D, difference; scanf("%d %d %d %d", &A , &B ,&C, &D); difference=((A * B) - (C * D)); printf("DIFERENCA = %d\n", difference); return 0; }
#include
int main() {
int A , B , C , D, difference;
scanf(“%d %d %d %d”, &A , &B ,&C, &D);
difference=((A * B) – (C * D));
printf(“DIFERENCA = %d\n”, difference);
return 0;
}
See lessURI Online Judge : 1001 Extremely Basic (Beginner Problem) in C language
#include int main() { int A,B,X; scanf("%d %d", &A, &B); X=A+B; printf("X = %d\n",X); return 0; }
#include
int main()
{
int A,B,X;
scanf(“%d %d”, &A, &B);
X=A+B;
printf(“X = %d\n”,X);
return 0;
See less}