-
```
// m.c
#include
int main(void)
{
char str[50];
printf("Press string: ");
scanf("%s", str);
printf("Your string is %s.\n", str);
return 0;
}
$ gcc m.c -o m.exe
What is the e…
-
![Slide-1](https://user-images.githubusercontent.com/57949197/81813386-4dcc9780-951f-11ea-9c15-7a5175db65b8.png)
![Slide-2](https://user-images.githubusercontent.com/57949197/81813381-4c9b6a80-95…
-
![Screenshot (50)](https://user-images.githubusercontent.com/113331717/193503219-4eec0434-2c42-4ef2-a4e2-65284389866f.png)
-
-
`// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。
//
#include
#include
#include
#include
using namespace std;
int map[31][31];
int n;
bool vi[31][31];
int mx[] = { 1,0 }, my[] = { 0,1 …
-
-
#include
int coprime(int num1, int num2)
{
int min, count, flag = 1;
min = num1 < num2 ? num1 : num2;
for(count = 2; count
-
1) Catégorie d'un combattant
Écrivez un programme qui saisit le sexe et le poids d'un combattant. Le programme affiche la catégorie dans laquelle cette athlète doit combattre.
![Image](https://git…
-
-
code not suffecent