https://www.devskill.com/CodingProblems/ViewProblem/82
বাচ্চা একটা প্রোবলেম , তোমায় কিছু সংখ্যা দেয়া থাকবে । যদি , কোনো সংখ্যা - ১২০ বা ১২০ এর বেশী হয় , তাহলে - প্রিন্ট করবে - Good Boy Sifat আর না হলে - প্রিন্ট করবে , Naughty Boy Sifat
চলো - কোড দেখি , এবার ।
#include<iostream>
using namespace std;
int main()
{
cin.tie(0);
ios::sync_with_stdio(0);
int t;
cin>>t;
int sum,n;
while(t--)
{
cin>>n;
if(n>=120)
{
cout<<"Good Boy Sifat"<<endl;
}
else{
cout<<"Naughty Boy Sifat"<<endl;
}
}
return 0;
}
In C#......................................
using System;
public class Test
{
public static void Main()
{
int t=Convert.ToInt32(Console.ReadLine());
for(int i=0;i<t;i++)
{
int n=Convert.ToInt32(Console.ReadLine());
if(n>=120)
{
Console.WriteLine("Good Boy Sifat");
}
else{
Console.WriteLine("Naughty Boy Sifat");
}
}
}
}
বাচ্চা একটা প্রোবলেম , তোমায় কিছু সংখ্যা দেয়া থাকবে । যদি , কোনো সংখ্যা - ১২০ বা ১২০ এর বেশী হয় , তাহলে - প্রিন্ট করবে - Good Boy Sifat আর না হলে - প্রিন্ট করবে , Naughty Boy Sifat
চলো - কোড দেখি , এবার ।
#include<iostream>
using namespace std;
int main()
{
cin.tie(0);
ios::sync_with_stdio(0);
int t;
cin>>t;
int sum,n;
while(t--)
{
cin>>n;
if(n>=120)
{
cout<<"Good Boy Sifat"<<endl;
}
else{
cout<<"Naughty Boy Sifat"<<endl;
}
}
return 0;
}
In C#......................................
using System;
public class Test
{
public static void Main()
{
int t=Convert.ToInt32(Console.ReadLine());
for(int i=0;i<t;i++)
{
int n=Convert.ToInt32(Console.ReadLine());
if(n>=120)
{
Console.WriteLine("Good Boy Sifat");
}
else{
Console.WriteLine("Naughty Boy Sifat");
}
}
}
}
No comments:
Post a Comment