https://blog.goo.ne.jp/luzluz/e/91b776da0167739c729196e4556837c3 https://pasteshr.com/kPPda7BRas http://pastebin.ws/68ykg1 https://bilgorajska.pl/forum,75501,0,posty,0,SoftBanks-shares-return-to-dot-com-bubble-era-highs.html https://www.edgenorth.ca/event/softbanks-shares-return-to-dot-com-bubble-era-highs/ https://www.edgenorth.ca/event/nissan-secures-7-8-billion-from-creditors-since-april/ https://www.edgenorth.ca/event/free-download-dil-bechara-full-movie-in-netflix-sushant-singh-rajput/ https://www.edgenorth.ca/event/free-download-rasbhari-full-movie-in-netflix-swara-bhaskar/ https://www.edgenorth.ca/event/free-download-bulbbul-full-movie-in-netflix-tripti-dimri/
Задание 1.
int a,b;
scanf("%i", &a);
scanf("%i", &b);
if (a<b)
for(int i=a; i<=b; i++)
printf("x = ", x , "; y = ", ((x3+1)/(x-3)+x) );
Задание 2.
int sum;
sum = 0;
for(int i=1; i<=115; i+=6)
sum+=i;
printf(sum);
Задание 3.
int a,b, n;
n = 0;
scanf("%i", &a);
scanf("%i", &b);
if (a<b)
for(int i=a; i<=b; i++)
if (i%11 == 0) n++;
if (a>b)
for(int i=b; i<=a; i++)
if (i%11 == 0) n++;
printf(n);
На C ничего никогда не писал, поэтому может чё-то не так, но по идее как-то так...
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
int A, B, C, D, tmp;
Console.Write("Введите A: ");
A = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите B: ");
B = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите C: ");
C = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите D: ");
D = Convert.ToInt32(Console.ReadLine());
tmp = A;
A = D;
D = C;
C = B;
B = tmp;
Console.WriteLine("Новые значения:");
Console.WriteLine("A = " + A);
Console.WriteLine("B = " + B);
Console.WriteLine("C = " + C);
Console.WriteLine("D = " + D);
}
}
}